$(document).ready(function(){

	$(".menu a").hover(function() {
		var tab = $(this).attr("rel");
		$(this).next("em").animate({opacity: "show", top: tab}, "slow");
	}, function() {
		var tab = $(this).attr("rel");
		$(this).next("em").animate({opacity: "hide", top: tab}, "fast");
	});


});


$(document).ready(function(){
	$('#mostra_form').hide(0);						   
	$('#form').click(function(){
		$('#mostra_form').slideToggle("slow");
	});
})


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

