/* Menu */
$(function() {
	$("table#tabela span").css("opacity","1");
	$("table#tabela span").hover(function () {
		$(this).stop().animate({
			opacity: 1
		}, 'slow');
	},
	function () {
		$(this).stop().animate({
			opacity: 0.6
		}, 'slow');
	});
});
/* DIV */
$(document).ready(function()	{
	//When page loads...
	$(".tabela_esconde").hide();//Hide all content
	$("table#tabela li:first, a#ativado").addClass("active").show();//Activate fist tab
	$(".tabela_esconde:first").show();//Show first tab content
	
	//On Click Event
	$("table#tabela td").click(function()	{
		
		$("a").removeClass("active");//Remove ani "active" class
		$(this).addClass("active");//Add "activate" class to selected tab
		$(".tabela_esconde").hide();//Hide all tab content
		
		var activeTab = $(this) .find("a") .attr("href");//Find the href attrib
		$(activeTab).fadeIn();//Fade in the active ID content
		return false;
	});
});
