function imageSwap(TRGT,STATE){
	if(STATE == "over"){
		document.getElementById(TRGT).src="images/"+TRGT+"_ON.gif";	
	}
	else if(STATE == "out"){
		document.getElementById(TRGT).src="images/"+TRGT+"_OFF.gif";	
	}
	
};