$(document).ready(function(){
		//RASTREAMENTO TOPO
		$("div#topo div.topoCinza div.btnRastreamento").mouseover(function(){
				$("div#topo div.topoCinza div.btnRastreamento a").stop( true, true ).animate({'top':-14},200);
		});

		$("div#topo div.topoCinza div.btnRastreamento").mouseout(function(){
				$("div#topo div.topoCinza div.btnRastreamento a").stop( true, true ).animate({'top':14},200);
		});
		
		//EMPRESA
		$("#empresa").mouseover(function(){
				$("#icone_empresa").stop( true, true ).animate({'top':0},200);
		});
		
		$("#empresa").mouseout(function(){
				$("#icone_empresa").stop( true, true ).animate({'top':100},200);
		});
		
		//PRODUTOS
		$("#produtos").mouseover(function(){
				$("#icone_produtos").stop( true, true ).animate({'top':0},200);
		});
		
		$("#produtos").mouseout(function(){
				$("#icone_produtos").stop( true, true ).animate({'top':100},200);
		});
		
		
		//DICAS
		$("#dicas").mouseover(function(){
				$("#icone_dicas").stop( true, true ).animate({'top':0},200);
		});
		
		$("#dicas").mouseout(function(){
				$("#icone_dicas").stop( true, true ).animate({'top':100},200);
		});
		
		
		//PARCEIROS
		$("#parceiros").mouseover(function(){
				$("#icone_parceiros").stop( true, true ).animate({'top':0},200);
		});
		
		$("#parceiros").mouseout(function(){
				$("#icone_parceiros").stop( true, true ).animate({'top':100},200);
		});
		
		
		//DEPOIMENTOS
		$("#depoimentos").mouseover(function(){
				$("#icone_depoimentos").stop( true, true ).animate({'top':0},200);
		});
		
		$("#depoimentos").mouseout(function(){
				$("#icone_depoimentos").stop( true, true ).animate({'top':100},200);
		});
		
		
		//ATENDIMENTO
		$("#atendimento").mouseover(function(){
				$("#icone_atendimento").stop( true, true ).animate({'top':0},200);
		});
		
		$("#atendimento").mouseout(function(){
				$("#icone_atendimento").stop( true, true ).animate({'top':100},200);
		});

		//NOT�CIAS - LEIA MAIS
		$("ul#listNoticias li").hover(function(){
			$(this).find("a.leiamais").stop(true, true).animate({'right': 15}, 200);
			}, function(){
				$(this).find("a.leiamais").stop(true, true).animate({'right': -100}, 200);
		});

});

function postarTwitter( url, texto ){
	window.open( encodeURI( "http://twitter.com/share?text=Notícias e novidades Marangatú. " + texto + "&original_referer=" + url ), "postar_twitter" )
}

