$(function(){
	$('div').mouseenter(function(){
		if(!$(this).hasClass('BlocoSubMenuEmpreendimentos') && !$(this).hasClass('subEmpreendimentos') && !$(this).hasClass('blocoMenuTopo')){
			//alert($(this).attr('class'));
			$('.subEmpreendimentos').slideUp(300);
		}
	});
	$('a').mouseenter(function(){
		if(!$(this).hasClass('btEmpreendimentos') && !$(this).hasClass('SpaceSubMenu')){
			$('.subEmpreendimentos').slideUp(300);
		}
	});
	$('span').mouseover(function(){
		if(!$(this).hasClass('titSubmenus')){
			$('.subEmpreendimentos').slideUp(300);
		}
	});
	$('.btEmpreendimentos').mouseover(function(){
		if($('.subEmpreendimentos').is(':hidden')){
			$('.subEmpreendimentos').slideDown(300);
		}
	});
});
