var menuHideTimerId = 0;

function showMenu(objid)
{
	hideAll();
	$(objid).show();
	clearTimeout ( menuHideTimerId );
	
}

function hideMenu(objid)
{
	menuHideTimerId = setTimeout ( "$('"+ objid + "').hide();", 500 );
}




function hideAll()
{
	$('ddl_weather').hide();
	$('ddl_information').hide();
	$('ddl_news').hide();
}