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

			//metodos
			me.others();
		},

		others : function(){
			$(".corsimcornao li:even").css("background","#f7f9fb");
			
			$(".faq li:odd").hide();
			$(".faq li:even a").click(function() {
				$(".faq li:odd:visible").slideUp("fast");
				$(this).parent().next().slideDown("fast");															 
			});
		}
	}
})(jQuery);

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