if(document.images) {
		pics = new Array()
		
			pics[1] = new Image()
			pics[1].src = "images/butt_home_0.gif"
			pics[2] = new Image()
			pics[2].src = "images/butt_home_1.gif"
		
			pics[3] = new Image()
			pics[3].src = "images/butt_clubhistory_0.gif"
			pics[4] = new Image()
			pics[4].src = "images/butt_clubhistory_1.gif"
		
			pics[5] = new Image()
			pics[5].src = "images/butt_fixtures_0.gif"
			pics[6] = new Image()
			pics[6].src = "images/butt_fixtures_1.gif"
		
			pics[7] = new Image()
			pics[7].src = "images/butt_gallery_0.gif"
			pics[8] = new Image()
			pics[8].src = "images/butt_gallery_1.gif"
		
			pics[9] = new Image()
			pics[9].src = "images/butt_polohistory_0.gif"
			pics[10] = new Image()
			pics[10].src = "images/butt_polohistory_1.gif"
			
			pics[11] = new Image()
			pics[11].src = "images/butt_location_0.gif"
			pics[12] = new Image()
			pics[12].src = "images/butt_location_1.gif"
			
			pics[13] = new Image()
			pics[13].src = "images/butt_membership_0.gif"
			pics[14] = new Image()
			pics[14].src = "images/butt_membership_1.gif"
			
			pics[15] = new Image()
			pics[15].src = "images/butt_themembers_0.gif"
			pics[16] = new Image()
			pics[16].src = "images/butt_themembers_1.gif"
			
			pics[17] = new Image()
			pics[17].src = "images/butt_links_0.gif"
			pics[18] = new Image()
			pics[18].src = "images/butt_links_1.gif"
			
			pics[19] = new Image()
			pics[19].src = "images/butt_moreinfo_0.gif"
			pics[20] = new Image()
			pics[20].src = "images/butt_moreinfo_1.gif"

	}
	
	function changer(from,to) {
		if(document.images) {
			document[from].src = pics[to].src
		}
	}
	function formcheck() {
	allokay = true
	if (document.forms[0].name.value == "") {
	        alert("Please give your name.") 
	   	    document.forms[0].name.focus()    
	        allokay = false 
	}
	if ((document.forms[0].location.value == "") && allokay) {
	        alert("Please give your approximate location.") 
	   	    document.forms[0].location.focus()    
	        allokay = false 
	}
	
	if ((document.forms[0].email.value == "") && allokay) {
	        alert("Please enter your e-mail address.") 
	   	    document.forms[0].email.focus()    
	        allokay = false 
	}
	
	if( ( (document.forms[0].email.value == "") || (document.forms[0].email.value.indexOf(".") == -1) || (document.forms[0].email.value.indexOf("@") == -1) ) && allokay ) {
			alert("Please enter a valid e-mail address")
			document.forms[0].email.focus()
			allokay = false
		}  
	if ((document.forms[0].question.value == "") && allokay) {
	        alert("Please enter a question or comment.") 
	   	    document.forms[0].question.focus()    
	        allokay = false 
	}
if( allokay ) {
		document.forms[0].submit()
	}
}