// JavaScript Document

function overSubMn(obj)
{
	if(typeof(document.getElementById(obj).timer)!="undefined") clearTimeout(document.getElementById(obj).timer);
	document.getElementById(obj).className = "expand2";	
}
function outSubMn(obj)
{
	obj = document.getElementById(obj);
	function alterar()
	{
		 obj.className = "expand";
	}
	obj.timer = setTimeout(alterar,500);
}