//chamada de funcoes
jQuery(document).ready(function(){									 
	//link viewup
	jQuery('.logoView').click(function(){
		location.href="http://www.viewup.com.br";
	});
	//logo site
	jQuery('#logo').click(function(){
		location.href="?view/principal";
	});
	//link viewup
	jQuery('.carrinhoId').click(function(){
		location.href="?src=view/carrinho";
	});
	//btn Localizacao
	jQuery("#verLocal").click(function(){
		mostraDados('maps','0');
	});
	//btn Contato
	jQuery("#btnEnviar").click(function(){
		enviaContato();
	});
	//Topbox  aparece
	jQuery(".linkabre").click(function(){
		jQuery("#topoBox").animate({"top": "0px"}, "slow");
	});	
	//Topbox  some
	jQuery(".closeTopoNews").click(function(){
		jQuery("#topoBox").animate({"top": "-160px"}, "slow");
	});
	//Avisar - News
	jQuery(".avisar").click(function(e){
		var evento = e.pageY+'px';
		jQuery("#news").animate({"top": evento}, "slow");
	});
	jQuery("#newsCad").click(function(e){
		var evento = e.pageY+'px';
		jQuery("#news").animate({"top": evento}, "slow");
	});
	jQuery("#fecharNews").click(function(){
		jQuery("#news").animate({"top": "-1000"}, "slow");
	});
	jQuery("#btnNews").click(function(){
		news();
	});
});

