(function($){
	$.Geral = {
		__constructor : function(){
			var me = this;
			//plugins
			$.Forms.__constructor();
			$.Menu.__constructor();

			//metodos
			me.others();
		},

		others : function(){
			$.ifixpng('img/pixel.gif');
			$('#menutopo li a').ifixpng();
			$("#blog .comentario:even").css("backgroundColor","#f7f7f7");
			$("#expositores tr:odd td").css("backgroundColor","#f7f7f7");
			$("#fotos tr:even td, #videos tr:even td").css("backgroundColor","#f7f7f7");
			$("a.gallery").fancybox({
				'zoomSpeedIn': 600,
				'zoomSpeedOut': 500,
				'easingIn': 'easeOutBack',
				'easingOut': 'easeInBack',
				'overlayShow': true
			});

			$('a.iframe').fancybox({ 
				frameWidth: 640,
				frameHeight: 300
			});

			/*$("#programacao .ttprograma").click(function() {
				var $element = $(this).next();
				if ($element.is(':hidden')) {
					$("#programacao .programa").slideUp("fast");
					$element.slideDown("fast");
				} else {
					$element.slideUp("fast");
				}
			});*/

			//$("#programacao .programa").hide();
		}
	}
})(jQuery);

$(function(){
	$.Geral.__constructor();
})