<!-- Hide from incompatible browsers
	
	//Initialize all images to be swapped
	if(document.images){
	    contactup = new Image
		contactup.src = "home/images/contactup.jpg"
		
		contactroll = new Image
		contactroll.src = "home/images/contactroll.gif"
		
		aboutup = new Image
		aboutup.src = "home/images/aboutup.jpg"
		
		aboutroll = new Image
		aboutroll.src = "about/images/aboutup.jpg"
		
		servicesup = new Image
		servicesup.src = "home/images/servicesup.jpg"
		
		servicesroll = new Image
		servicesroll.src = "services/images/servicesup.jpg"
		
		processup = new Image
		processup.src = "home/images/processup.jpg"
		
		processroll = new Image
		processroll.src = "process/images/processup.jpg"
		
		workup = new Image
		workup.src = "home/images/workup.jpg"
		
		workroll = new Image
		workroll.src = "portfolio/images/workup.jpg"
		
	}


	
	//Swap image on the screen with one on file
	function swapImage(imgField,newImg){
		if(document.images){
			document[imgField].src=eval(newImg + ".src")
		}
	}

	
	// Stop hiding from incompatible browsers-->