jQuery(document).ready(function($){
	
	//$('body').fadeIn();
	
	$('#topo ul#menu li a').css({backgroundPosition: '50% -8px'});
	
	$('#topo ul#menu li a').mouseover(function(){
			$(this).animate({backgroundPosition : "(50% 3px)"}, 100)
	}).mouseout(function(){
			$(this).animate({backgroundPosition :"(50% -8px)"}, 100);
	});
	
	jQuery('#topo ul#menu').superfish({ speed: 'fast', autoArrows:  false, dropShadows: false });
	
	/*$('#banner ul li a').click(function() {
		var endereco = this.href;
		$('html').css({'background-color':'#ffffff'});
		$('body').fadeOut(300, function(){
			window.location = endereco;
		});
		return false;
	});*/
	
	$('#esquerda ul li:nth-child(1) a').click(
	function() {
		$('form#newsletter').fadeIn();
		return false;
	});
	
	$('form#newsletter a').click(
	function() {
		$('form#newsletter').fadeOut();
		return false;
	});
	
});
