$(function(){
	$('#menu .smenu').mouseover( function(){
		$('#submenus').show();
		var rel = $(this).attr('rel');
		$("#submenus ."+rel).animate({"margin-top": "0px"}, "slow");
	});
	$('#submenus .sub').each(function(){
		/* var height = $(this).css('height'); */
		$(this).css("margin-top", "-200px", function(){$('#submenus').hide()});
	});
	
	$('#submenus .sub').mouseenter( function(){
		$(this).animate({"margin-top": "0px"}, "normal");
	});
	$('#submenus .sub').mouseleave( function(){
		/* var height = $(this).css('height'); */
		$(this).animate({"margin-top": "-200px"}, "normal", function(){$('#submenus').hide()});
	});
	
	$('#submenus').mouseleave( function(){
		$('#submenus .sub').each(function(){
			/* var height = $(this).css('height'); */
			$(this).animate({"margin-top": "-200px"}, "normal", function(){$('#submenus').hide()});
		});
	});
	
	
	
	$('.temp').click(function(){
		window.alert("Ainda em fase de testes, em breve iremos disponibilizá-los a todos");
		return false;
	});
	
});