function onMenuOver(id)
{
 	document.getElementById(id).className="topMenuOver"
	switch (document.getElementById(id).id)
	{
		case "Products":
			break;
		case "SRPolicies":
			break;
		case "RetailTagAlert":
			break;
		case "Testimonials":
			break;
		case "Support":
			openSub(4);
			break;
		case "Contactus":
			openSub(5);
			break;
		case "Home":
			break;
	}
 	//openSub(5)
}

function onMenuOut(id,e)
{
	document.getElementById(id).className="topMenuOut"
	switch (document.getElementById(id).id)
	{
		case "Products":
			break;
		case "SRPolicies":
			break;
		case "RetailTagAlert":
			break;
		case "Testimonials":
			break;
		case "Support":
			checkIfClose(4,e);
			break;
		case "Contactus":
			checkIfClose(5,e);
			break;
		case "Home":
			break;
	}
}

function onGo(id)
{
	switch (document.getElementById(id).id)
	{
		case "Products":
			location.href = "storefront.asp";
			break;
		case "SRPolicies":
			location.href = "under_construction.asp"
			break;
		case "RetailTagAlert":
			location.href = "under_construction.asp"
			break;
		case "Testimonials":
			location.href = "under_construction.asp"
			break;
		case "Support":
			location.href = "under_construction.asp"
			break;
		case "Contactus":
			location.href = "operating_locations.asp"
			break;
		case "Home":
			location.href = "TagAlertHome.asp"
			break;
	}
}