<!-- Hide from incompatible browsers
	
	//Initialize all images to be swapped
	if(document.images){
	    homeup = new Image
		homeup.src = "images/homeup.gif"
		
		homeroll = new Image
		homeroll.src = "images/homeroll.gif"
		
		historyup = new Image
		historyup.src = "images/historyup.gif"
		
		historyroll = new Image
		historyroll.src = "images/historyroll.gif"
		
		programsup = new Image
		programsup.src = "images/programsup.gif"
		
		programsroll = new Image
		programsroll.src = "images/programsroll.gif"
		
		volunteersup = new Image
		volunteersup.src = "images/volunteersup.gif"
		
		volunteersroll = new Image
		volunteersroll.src = "images/volunteersroll.gif"
		
		trainingup = new Image
		trainingup.src = "images/trainingup.gif"
		
		trainingroll = new Image
		trainingroll.src = "images/trainingroll.gif"
		
		contactup = new Image
		contactup.src = "images/contactup.gif"
		
		contactroll = new Image
		contactroll.src = "images/contactroll.gif"
		
		faqs = new Image
		faqs.src = "images/faq.gif"
		
		faqroll = new Image
		faqroll.src = "images/faqroll.gif"
		
		newsup = new Image
		newsup.src = "images/newsup.gif"
		
		newsroll = new Image
		newsroll.src = "images/newsroll.gif"
		
		donateup = new Image
		donateup.src = "images/donateup.gif"
		
		donateroll = new Image
		donateroll.src = "images/donateroll.gif"
	}


	
	//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-->
