function rollover(button){
	theName = button.id
	theImage = "images/buttons/" + theName + "_over.gif"
	button.src = theImage
	return;
}

function rolloff(button){
	theName = button.id
	theImage = "images/buttons/" + theName + "_active.gif"
	button.src = theImage
	return;
}

	
	