//chamada de funcoes
jQuery(document).ready(function(){									 
	//link viewup
	jQuery('.logoView').click(function(){
		location.href="http://www.viewup.com.br";
	});
	//btn
	jQuery("#btnhome").click(function(){
		location.href="?src=tablas/principal";
	});
	jQuery("#btnempresa").click(function(){
		location.href="?src=tablas/empresa";
	});
	jQuery("#btnrep").click(function(){
		location.href="?src=tablas/rep";
	});
	jQuery("#btnmarcas").click(function(){
		location.href="?src=tablas/marcas";
	});
	jQuery("#btncontato").click(function(){
		location.href="?src=tablas/contato";
	});
	//Esqueceu a senha
	jQuery("#esqueceuAsenha").click(function(){
		showHide('esqueceuPassword');
	});
	jQuery("#enviarPass").click(function(){
		esqueceu();
	});
});

