// JavaScript Document
$(function(){
		   $.fx.step.textShadowBlur = function(fx) {
			  $(fx.elem).css({textShadow: '0 0 ' + Math.floor(fx.now) + 'px #FFF'});
			};
 
		   $(".link-botao-principal, .link-botao-lateral").hover(
											function(){
													 $(this).stop().animate({textShadowBlur:30});
													 },
											function(){
													 $(this).stop().animate({textShadowBlur:1});
													})
		   

})
