jQuery(function($) {
	// 
	/* Cantos arredondados Jquery */
	//$('#menu').corner("bottom cc:#000");
	//$('#menu-projetos').corner("top cc:#000");
	
	$(".bt-empresa").click(function(){		
		$("#conteudo").animate({"marginTop":"0px"}, 750);
		$("#menu-projetos").fadeOut('slow');
	});	
	$(".bt-projetos").click(function(){
		$("#conteudo").animate({"marginTop":"-322px"}, 750);
		$("#menu-projetos").fadeIn();		
	});	
	$(".bt-showroom").click(function(){
		$("#conteudo").animate({"marginTop":"-644px"}, 750);
		$("#menu-projetos").fadeOut('slow');
	});
	
});