$(document).ready(function() {	

	var menu_displaying = false;
	//remove the selected class from all LI    
	$('li[idx="box_idioma"]').removeClass('selected');
	$('li[idx="box_projetos"]').removeClass('selected');
	$('li[idx="box_clientes"]').removeClass('selected');
	
	$('.boxBody div').hide();
	$('#table-menu').hide();
	
	
	$('.boxTop').hide(); 
	$('.boxBottom').hide();
	
	
  	$('li[idx]').click(function(){
		var idx = $(this).attr("idx");
		if (menu_displaying) {
			$('li[idx="'+idx+'"]').removeClass('selected');
			$('.lista_links[idx="'+idx+'"]').slideUp('1500', 
				function() 
				{	
					$('.boxTop[idx="'+idx+'"]').hide(); 
					$('.boxBottom[idx="'+idx+'"]').hide(); 
					$('#table-menu').hide();
				}
			);
			menu_displaying = false;
		}
		else {
			$(this).removeClass('selected');
			$(this).addClass('selected');
			$('.boxTop[idx="'+idx+'"]').show();
			$('.boxBottom[idx="'+idx+'"]').show();
			$('#table-menu').show();
			$('.lista_links[idx="'+idx+'"]').slideDown('1500');
			menu_displaying = true;
		}    
	}).mouseover(function() {
		$(this).addClass('mouseover');
		$(this).removeClass('mouseout');   
	}).mouseout(function() {
		$(this).addClass('mouseout');
		$(this).removeClass('mouseover');    
	});
  
  
  	var cor_link = $('.boxBody li').css('color');
	
	$('.boxBody li').click(function(){
		window.location = $(this).find("a").attr("href");
	}).mouseover(function() {
		//$(this).children().animate({paddingLeft:"10px"}, {queue:false, duration:300});
		$(this).children().css('color', '#ffffff');
	}).mouseout(function() {
		//$(this).children().animate({paddingLeft:"0"}, {queue:false, duration:300});
		$(this).children().css('color', cor_link);
	});  	
	
});
