
function ShowRollOverMenus(getval)
{
		if (getval == 'company')
		{
			company.style.display="block";
			Service.style.display="none";
			contact1.style.display="none";
		}
		else if (getval == 'services')
		{
			Service.style.display="block";
			company.style.display="none";
			contact1.style.display="none";
			
		}
		else if (getval == 'contact')
		{
			contact1.style.display="block";
			company.style.display="none";
			Service.style.display="none";
		}
}


function HideRollOverMenu(getval)
{
	if (getval == 'company')
	{
		var t=setTimeout("Hidepopup('1')",3000);
	}
	else if (getval == 'services')
	{
		var t=setTimeout("Hidepopup('2')",3000);
	}
	else if (getval == 'contact')
	{
		var t=setTimeout("Hidepopup('3')",3000);
	}
}

function Hidepopup(getval)
{
	if (getval == '1')
	{
		company.style.display="none";
	}
	else if (getval == '2')	
	{
		Service.style.display="none";
	}
	else if (getval == '3')
	{
		contact1.style.display="none";
	}
}

function over_image(imgpath,imgname,divname)
{
	if (document.images)
	{
		document[imgname].src = imgpath;
	}
	if (divname == 'company')
	{
		company.style.display="block";
		Service.style.display="none";
		contact1.style.display="none";
	}
}

function up_image(imgpath,imgname)
{
	if (document.images)
	{
		document[imgname].src = imgpath;
	}
}


