// Module Media Custom DropDowns!
var to1, to2
function showmenu(elid)
{
	clearTimeout(to1);
	clearTimeout(to2);
	MM_findObj(elid).style.display = 'block';
}

function hidemenu(elid)
{
	clearTimeout(to1);
	clearTimeout(to2);
	to1 = setTimeout("MM_findObj('ddnav1').style.display = 'none'",150);
	to2 = setTimeout("MM_findObj('ddnav2').style.display = 'none'",150);
}
