function wp_showhide(theName,id) {
	jQuery("#cardapio_dir p").each(function() {
		jQuery("#"+theName).siblings().fadeOut("slow", function(){ jQuery("#"+theName).fadeIn("slow") });
		  
	});
	jQuery("#cardapio_esq p").each(function() {
                 jQuery("#"+id).siblings().find('a').css('color','#827a7a');
		 jQuery("#"+id+" a").css('color','#B51602'); // Mark link as active 
	});
		 



}

