<!-- Hide from incompatible browsers
	
	//Initialize all images to be swapped
	if(document.images){
		aboutjcob = new Image
		aboutjcob.src = "images/aboutjcob_up.jpg"
		
		aboutjcobroll = new Image
		aboutjcobroll.src = "images/aboutjcob_roll.jpg"
	
	    aboutjc = new Image
		aboutjc.src = "images/aboutjc_up.jpg"
		
		aboutjcroll = new Image
		aboutjcroll.src = "images/aboutjc_roll.jpg"
		
		jcobasites = new Image
		jcobasites.src = "images/jcobasites_up.jpg"
		
		jcobasitesroll = new Image
		jcobasitesroll.src = "images/jcobasites_roll.jpg"
		
		meetings = new Image
		meetings.src = "images/meetings_up.jpg"
		
		meetingsroll = new Image
		meetingsroll.src = "images/meetings_roll.jpg"
		
		contact = new Image
		contact.src = "images/contact_up.jpg"
		
		contactroll = new Image
		contactroll.src = "images/contact_roll.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-->