var obj = null;
var up = false;

function checkHover() {
    if (obj) {
        obj.find('ul').fadeOut('fast');    
    }
}

function checkSubMenu()
{
	if(!up)
	{
		$('#menu_lateral').find('img').hide();
		$('#menu_lateral').find('.vermelho').show();
	}
}

$(document).ready(function() {
	$('#menu_lateral > li').hover(function() {
	if (obj) {
        obj.find('ul').fadeOut('fast');
        obj = null;
    }
        
    $(this).find('ul').fadeIn('fast');
    }, function() {
        obj = $(this);
        setTimeout("checkHover()", 200);
    });
	
	$('#menu_lateral li').mouseover(function() {
		$('#menu_lateral').find('img').hide();
		$('#menu_lateral').find('.cinza').show();
		$(this).find('.cinza').hide();
		$(this).find('.laranja').show();
		up = true;
    });
	
	$('#menu_lateral li').mouseout(function() {
		setTimeout("checkSubMenu()", 200);
		up = false;
    });
	
});