var _menu;

function setMenuCat(pos)
{
	_menu = pos;
}

$(function() {
	//var divnav = $(this);
	$("ul.subnav").hide();
	$("#imagem1").show();
	$("#imagem2").show();
	$("#imagem3").show();
	$("#imagem4").show();
	$("#imagem5").show();
	
//menu1
		$("#o-parque").hover(function(){		
			$("#sub1").stop(true, true).delay(200).slideDown(300);
			$("#imagem1").stop(true, true).fadeOut(200);
		}, function(){	
			$("#imagem1").stop(true, true).delay(200).fadeIn(200);
			$("#sub1").stop(true, true).slideUp(300);	
		});
	
//menu2		
		$("#actividades").hover(function(){
			$("#sub2").stop(true, true).delay(200).slideDown(300);
			$("#imagem2").stop(true, true).fadeOut(200);
		//	});
		}, function(){	
			$("#imagem2").stop(true, true).delay(200).fadeIn(200);
			$("#sub2").stop(true, true).slideUp(300);
		});
//menu3
		$("#informacoes").hover(function(){
			$("#sub3").stop(true, true).delay(200).slideDown(300);
			$("#imagem3").stop(true, true).fadeOut(200);
		//	});
		}, function(){	
			$("#imagem3").stop(true, true).delay(200).fadeIn(200);
			$("#sub3").stop(true, true).slideUp(300);
		});
//menu4
		$("#conservacao").hover(function(){
			$("#sub4").stop(true, true).delay(200).slideDown(300);
			$("#imagem4").stop(true, true).fadeOut(200);
		//	});
		}, function(){	
			$("#imagem4").stop(true, true).delay(200).fadeIn(200);
			$("#sub4").stop(true, true).slideUp(300);
		});
//menu5
		$("#os-animais").hover(function(){
			$("#sub5").stop(true, true).delay(200).slideDown(300);
			$("#imagem5").stop(true, true).fadeOut(200);
		//	});
		}, function(){	
			$("#imagem5").stop(true, true).delay(200).fadeIn(200);
			$("#sub5").stop(true, true).slideUp(300);
		});
		
		//select current Menu
		$('#mainMenu div#' + _menu).find('ul.subnav').show();
		$('#mainMenu div#' + _menu).find('figure').hide();
		$('#mainMenu div#' + _menu).unbind('mouseover mouseout');

});
