/*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
			
			/////////////////////////// EFEITO NO MENU ESQUERDO AO PASSAR O MOUSE NOS LINKS /////////////////////////////////////////
			$('ul#MENU-ESQ li a').hover(function(){
				$(this)
				.stop(true, true)
				.animate({paddingLeft: '20px'}, 500);									 
			}, function(){
				$(this)
				.stop(true, true)
				.animate({paddingLeft: '10px'}, 500);		
				});
			/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
			

		})(jQuery);
 });


