/*
* Author:      Marco Kuiper (http://www.marcofolio.net/)
*/

$(document).ready(function()
{
	// Hide all the tooltips
	$("#jquery li").each(function() {
		$("a strong", this).css("opacity", "0");
	});
	
	$("#jquery li").hover(function() { // Mouse over
		$(this)
			.stop().fadeTo(500, 1)
			.siblings().stop().fadeTo(500, 0.2);
			
		$("a strong", this)
			.stop()
			.animate({
				opacity: 1,
				top: "-10px"
			}, 300);
		
	}, function() { // Mouse out
		$(this)
			.stop().fadeTo(500, 1)
			.siblings().stop().fadeTo(500, 1);
			
		$("a strong", this)
			.stop()
			.animate({
				opacity: 0,
				top: "-1px"
			}, 300);
	});
	
});

function mailm() {
	if (((document.formContato.nome.value != '') && (document.formContato.email.value != '')) && ((document.formContato.nome.value != 'Nome') && (document.formContato.email.value != 'E-mail'))) {
	parent.hid.location.href="cadastro.php?nome=" + document.formContato.nome.value + "&email=" + document.formContato.email.value;
	  document.getElementById('cadastro').style.display = "none";
	  alert('Seu e-mail foi cadastrado com sucesso!');
	} else { alert('Um dos campos nao foi preenchido corretamente!'); }
}
