function onmov(item)
{
	var thisNav, navSource, thisNavOver;
	thisNav = "nav" + item;
	thisNavOver = "nav" + item + "Over";
	
	navSource = document.getElementById(thisNav);
	
	navSource.className = thisNavOver;				
	
}

function onmot(item)
{
	var thisNav, navSource, thisNavOver;
	thisNav= "nav" + item;
			
	navSource = document.getElementById(thisNav);
	
	navSource.className = thisNav;				
				
}


function oncli(item)
{
	if(item=="home")
		{
			document.location.href = "default.aspx";
		}
	else if(item=="contact")
		{
			document.location.href = "Contact.aspx";
		}
	else if(item=="about")
		{
			document.location.href = "About.aspx";
		}
	else if(item=="products")
		{
			document.location.href = "Products.aspx";
		}
	else if(item=="services")
		{
			document.location.href = "Services.aspx";
		}
	else
		{
			document.location.href = "default.aspx";
		}
}


function popInfo(thisSC)
{
	window.open("screenShot.aspx?screenShot=" + thisSC, "scDetail", "menubar=no,scrollbars=yes,width=700,height=600,resizable=yes");
}