/* menu */
// var menu = 1;

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')");
}

$(document).ready(function() {
	
	// menu
	
	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();
	});
	
	// faixinha frete grátis | detalhe de produto
	
	var minhaURL = document.location.pathname;
	minhaURL = minhaURL.toLowerCase();
	
	if(minhaURL.search('/produto') == 0){
	  $('#vitrine').prepend('<div id="faixinha_produto"></div>');
	  $('#faixinha_produto').load('/template/frete_gratis_detalhe.htm');
	}


	
});
