$(document).ready(function () {

	/* efeito logo distriol */

		var top_val_logo = $('h1 a').css('top'); /* pega o valor de top */
		$('h1').hover(
			function () {				
				$(this).children('a').stop().animate({top:0}, {easing: 'easeOutQuad', duration:500});      
				},
			function () {				
				$(this).children('a').stop().animate({top:top_val_logo}, {easing: 'easeOutQuad', duration:500});
			}      
		);


	/* efeito menu */

		var top_val = $('#menu li a').css('top'); /* pega o valor de top */		
		$('#menu li.selected').children('a').stop().animate({top:0}, {easing: 'easeOutQuad', duration:500}); /* menu ja ativo */		
		$('#menu li').hover(
			function () {				
				$(this).children('a').stop().animate({top:0}, {easing: 'easeOutQuad', duration:500});      
				},
			function () {				
				$(this).children('a').stop().animate({top:top_val}, {easing: 'easeOutQuad', duration:500});
				$('#menu li.selected').children('a').stop().animate({top:0}, {easing: 'easeOutQuad', duration:500});       
			}      
		);

	/* rodape */
	
		$('#rodape ul li:last, #conteudo_secao.empresa .col2 ul li:last').css('background', 'none');

});
