// JavaScript Document

function setCurrentPage()
{
	
	var menuItems=["smallbusiness.aspx", "graphicprofessionals.aspx", "vcucommunity.aspx", "productsservices.aspx", "givingback.aspx", "aboutus.aspx","ourtechnology.aspx","ourpartners.aspx","contactus.aspx", "fileupload_quickquote.aspx?action=getquote", "fileupload_quickquote.aspx?action=sendfile"];
	var URL = unescape(location.href);	// get current URL in plain ASCII
	var xstart = URL.lastIndexOf("/") + 1;
	var xend = URL.length;
	var hereName = URL.substring(xstart,xend);
	for (i = 0; i < menuItems.length;i++)
	{
		if (hereName == menuItems[i])
		{
			
			var liName = "menu"+i;
			/*alert(hereName + " " + liName);*/
			document.getElementById(liName).className = "activeli";
		}
	}
}

