/* ---------------------------------------------------------- */
/* SCRIPT MENU (by B2ML Sistemas) --------------------------- */
/* ---------------------------------------------------------- */

jQuery(document).ready(function() {
	
	//Abrindo submenu ativo
	var subAtivo = jQuery(".submenu.ativo");
	if (subAtivo.length > 0) {
		subAtivo.css("bottom", "0");
		jQuery("#faixa-submenu").css("bottom", "0");
		subAtivo.prev().css("bottom", "39px");
	}
	
	
	/* MENU COM EFEITO HOVER */
	jQuery(".subheader").hover(
		function() {
			jQuery("#faixa-submenu").stop().animate({
				bottom: "0px"
			}, 400);
			jQuery(this).children(".submenu").stop().animate({
				bottom: "0px"
			}, 400);
			jQuery(this).children(".seta").stop().animate({
				bottom: "39px"
			}, 400);
		},
		function() {
			jQuery("#faixa-submenu").stop().animate({
				bottom: "-50px"
			}, 400);
			jQuery(this).children(".submenu").stop().animate({
				bottom: "-50px"
			}, 400);
			jQuery(this).children(".seta").stop().animate({
				bottom: "-10px"
			}, 400);
		}
	);
	
	jQuery(".submenu").hover(
		function() {
			jQuery("#faixa-submenu").css("bottom", "0px");
			jQuery(this).stop().css("bottom", "0px");
		},
		function() {
			jQuery("#faixa-submenu").stop().animate({
				bottom: "-50px"
			}, 400);
			jQuery(this).stop().animate({
				bottom: "-50px"
			}, 400);
		}
	);
	
});
