/*ESTE ARQUIVO JAVASCRIPT FOI DESENVOLVIDO POR PUBLIONLINE BRASIL
http://www.publionline.com.br*/

$(document).ready(function(){
		
		(function($){ // Wrapper to make sure that the $ is used by jQuery and wasn't taken over by another library
			
			//////////////////////////// SCRIPTS DO MENU /////////////////////////////
			/*$('ul#MENU li.submenu').hover(function(){
				$(this).find('ul')
				.stop(true, true)
				.fadeIn('fast');
			}, function(){
				$(this).find('ul')
				.stop(true, true)				
				.fadeOut('fast');
				});*/
			
			////////////////////////////////////////////////////////////////////////
			
			$(document).pngFix();
			
			////////////////////
			
			$('#menu li a').hover(function(){
			  	$(this).stop(true, true).animate({backgroundColor: '#E59F33', color: '#fff'}, 200);						   
			}, function(){
			  	$(this).stop(true, true).animate({backgroundColor: '#fff', color: '#000'}, 200);
			});
			
						
		})(jQuery);
 });


