/************************************************
	Código On Document Ready
************************************************/
var speed = 100;
var speed2 = 400;

$(function(){
	/**** MENU NAVEGAÇÃO ****************/
	$("#nav_menu>LI").each(function(){
		if($("OL",this).size()>0){
			$(this).hover(
				function(){
					$("OL LI A",this).each(function(){$(this).html($(this).html().split(" ").join("&nbsp;"));});//Hack para IE 6.0
					$("OL",this).css("opacity",0.9).show();
					//$("OL LI A",this).css("display","inline-block");//Hack para IE 6.0
				},
				function(){
					$("OL",this).hide();
			});
		}
		
		
	});
	
	//Hover Menu
	$(".tab").hover(function(){
		$(this).addClass("hover");
	},function(){
		$(this).removeClass("hover");
	});
	
	//Hover Links Menu
	$(".tabLink").hover(function(){
		$(this).addClass("hoverLink");
	},function(){
		$(this).removeClass("hoverLink");
	});
	
	$(".tab").click(function(){
		$("OL").hide();
		$(".tab").removeClass("activo");
		$(this).addClass("activo");
	});
	
});