/* menu */
// var menu = 1;

$(document).ready(function() {
	
	// menu
	
	function menuHide(){
		$('#menu').fadeOut('fast');
		$('#menu-rodape').fadeOut('fast');
		$('#botao-departamentos').css("background-image", "url('/img/botao_departamentos_0.png')");
	}
	function menuShow(){
		$('#menu').fadeIn('fast');
		$('#menu-rodape').fadeIn('fast');
		$('#botao-departamentos').css("background-image", "url('/img/botao_departamentos_1.png')");
	}
	
	if(menu == 0){
		$('#menu-vertical').hover(function() {
			menuShow();
		}, function() {
			menuHide();
		});
	} else {
		menuShow();
	}

	// submenus
	
	var obj = null;
	$('#nav > li').hover(function() {
			if (obj) {
					obj.find('ul').hide();
					obj = null;
			}
			$(this).find('ul').show();
	}, function() {
			$(this).find('ul').hide();
	});
	
});