
<!--
	browserOK = false;
	if (navigator.userAgent.indexOf("MSIE 3.") == -1)
	{
		browserOK = true;
	}
	
//-->

<!--
	//Preload Images
	if(browserOK)
	{     
		imgArray = new Array(22);
		for(i = 0; i < 22; i++)
		{
			imgArray[i] = new Array(2);
			for(j = 0; j < 2; j++)
			{		
				imgArray[i][j] = new Image();	
			}
		}
		
		
		//home
		imgArray[1][0].src = "images/m_gallery_up.gif";
		imgArray[1][1].src = "images/m_gallery_dn.gif";
		//who we are
		imgArray[2][0].src = "images/m_whoweare_up.gif";    
		imgArray[2][1].src = "images/m_whoweare_dn.gif";
		//what we do
		imgArray[3][0].src = "images/m_whatwedo_up.gif";    
		imgArray[3][1].src = "images/m_whatwedo_dn.gif";
		//how we do it
		imgArray[4][0].src = "images/m_howwedoit_up.gif";    
		imgArray[4][1].src = "images/m_howwedoit_dn.gif";
		//location
		imgArray[5][0].src = "images/m_location_up.gif";    
		imgArray[5][1].src = "images/m_location_dn.gif";
		//pricing
		imgArray[6][0].src = "images/m_pricing_up.gif";    
		imgArray[6][1].src = "images/m_pricing_dn.gif";
		//contact us
		imgArray[7][0].src = "images/m_contactus_up.gif";    
		imgArray[7][1].src = "images/m_contactus_dn.gif";
				
	}

	function act(imgName,imgNum)
	{
		if(document.images)
			document.images[imgName].src =imgArray[imgNum][1].src;
	}

	function inact(imgName,imgNum)
	{
		if(document.images)
			document.images[imgName].src =imgArray[imgNum][0].src;
	}
	
//-->


