function go( id )
{
	page = "#";
	switch ( id )
	{
		case ( "ContactUs" ):
			page = "ContactUs.htm";
			break;
		case ( "References" ):
			page = "References.htm";
			break;
		case ( "ParkingLot" ):
			page = "ParkingLot.htm";
			break;
		case ( "Street" ):
			page = "Street.htm";
			break;
		case ( "Barricades_Traffic_Control" ):
			page = "Barricades_Traffic_Control.htm";
			break;
		case ( "PavementMarkings" ):
			page = "PavementMarkings.htm";
			break;
		case ( "SpecialEvents" ):
			page = "SpecialEvents.htm";
			break;
		case ( "PermanentSigns" ):
			page = "PermanentSigns.htm";
			break;
		case ( "SafetyApparel" ):
			page = "SafetyApparel.htm";
			break;
		case ( "SafetyDevices" ):
			page = "SafetyDevices.htm";
			break;
		case ( "EquipmentRentAndSales" ):
			page = "EquipmentRentAndSales.htm";
			break;
		case ( "AboutUs" ):
			page = "AboutUs.htm";
			break;
		case ( "Default" ):
			page = "default.htm";
			break;
	}
	window.location.href = page;
}