function rollOn(image){
	image.src=image.src.replace('_off','_on');
}
function rollOff(image){
	image.src=image.src.replace('_on','_off');
}