//<script language="javascript">
	var sServer=GetServer();		//"<%=cSettings.DefaultServer%>";//
	last=""
	if (document.images)
	{

		// main nav images

		carton = new Image();
		carton.src = sServer + "/images/navigation/my_cart_on.gif";
		cartoff= new Image();
		cartoff.src = sServer + "/images/navigation/my_cart_off.gif";

		customeron = new Image();
		customeron.src = sServer + "/images/navigation/customer_center_on.gif";
		customeroff= new Image();
		customeroff.src = sServer + "/images/navigation/customer_center_off.gif";

		homeon = new Image();
		homeon.src = sServer + "/images/navigation/home_on.gif";
		homeoff= new Image();
		homeoff.src = sServer + "/images/navigation/home_off.gif";


		abouton = new Image();
		abouton.src = sServer + "/images/navigation/about_on.gif";
		aboutoff= new Image();
		aboutoff.src = sServer + "/images/navigation/about_off.gif";


		serviceson = new Image();
		serviceson.src = sServer + "/images/navigation/services_on.gif";
		servicesoff= new Image();
		servicesoff.src = sServer + "/images/navigation/services_off.gif";

		pricingon = new Image();
		pricingon.src = sServer + "/images/navigation/pricing_on.gif";
		pricingoff= new Image();
		pricingoff.src = sServer + "/images/navigation/pricing_off.gif";

		contacton = new Image();
		contacton.src = sServer + "/images/navigation/contact_on.gif";
		contactoff= new Image();
		contactoff.src = sServer + "/images/navigation/contact_off.gif";


		// subnav images

		// portfolio
		multimediaoff = new Image();
		multimediaoff.src = sServer + "/images/multimedia_off.gif";
		multimediaon =  new Image();
		multimediaon.src = sServer + "/images/multimedia_on.gif";

		identityoff = new Image();
		identityoff.src = sServer + "/images/identity_off.gif";
		identityon =  new Image();
		identityon.src = sServer + "/images/identity_on.gif";

		illustrationsoff = new Image();
		illustrationsoff.src = sServer + "/images/illustrations_off.gif";
		illustrationson =  new Image();
		illustrationson.src = sServer + "/images/illustrations_on.gif";

		advertisingoff = new Image();
		advertisingoff.src = sServer + "/images/advertising_off.gif";
		advertisingon =  new Image();
		advertisingon.src = sServer + "/images/advertising_on.gif";

		designoff = new Image();
		designoff.src = sServer + "/images/design_off.gif";
		designon =  new Image();
		designon.src = sServer + "/images/design_on.gif";
	}

	function imageon(imgName)
	{
		if (last && (last != imgName))
		{
			document[last].src = eval(last + 'off.src');
		}
		if (document.images)
		{
			document[imgName].src = eval(imgName + 'on.src');
		}
		last=imgName;
	}

	function imageoff(imgName)
	{
		if (document.images)
		{
			document[imgName].src = eval(imgName + 'off.src');
		}
	}

	// Submenu Image Rollovers

	function subimageon(divName,imgName){
		if (document.images) {
			if (document.getElementById){
				document[imgName].src = eval(imgName + 'on.src');
			} else {
			eval('document.layers.'+divName+'.document["' + imgName + '"].src = ' + imgName + 'on.src');
			}
		}
	}

	function subimageoff(divName,imgName){
		if (document.images) {
			if (document.getElementById){
				document[imgName].src = eval(imgName + 'off.src');
			} else {
			eval('document.layers.'+divName+'.document["' + imgName + '"].src = ' + imgName + 'off.src');
			}
		}
	}






	<!--Begin Layer Menu-->
	num = false
	myTimer = ""
	mapTimer=""

	function showLayer(layerName)
	{
		if (document.layers)
		{
  			if (num)
  			{
				document.layers[num].visibility = "hidden";
			}
			document.layers[layerName].visibility = "visible"
		}
		else if (document.getElementById)
		{
   			if (num)
   			{
    			document.getElementById(num).style.visibility = "hidden";
			}	
			document.getElementById(layerName).style.visibility = "visible";
		}

		num = layerName
	}

	function hideLayer()
	{
		if (num)
		{
		
			if (document.layers)
			{
    			document.layers[num].visibility = "hidden"
  			}
  			else if (document.getElementById)
  			{
    			document.getElementById(num).style.visibility = "hidden";
  			}
		  	
		}
	}


	// Set & Clear Timers That Keep Track of Rollover Submenus

	imgTimer=""

	function startTimers()
	{
		myTimer=setTimeout('hideLayer(num)', 2000);
		imgTimer=setTimeout('imageoff(last)', 2000);
	}

	function stopTimers()
	{
		clearTimeout(myTimer);
		clearTimeout(imgTimer);
	}



	// check the platform - send the correct CSS file
	if (navigator.platform == "MacPC")
	{
		document.writeln('<LINK HREF="' + sServer + '/inc/mac.css" REL="styleSheet" TYPE="text/css">')
	}
	else
	{
		document.writeln('<LINK HREF="' + sServer + '/inc/pc.css" REL="styleSheet" TYPE="text/css">')
	}
//</script>