/*
	Animal Care Hospital Javascript
	
	Deployed 2007 by max thom stahl
*/

function roll_on(elt) {
	src = elt.getAttribute('src');
	elt.setAttribute('src', src.replace(/(.*)off.gif/, "$1on.gif"));
}
function roll_off(elt) {
	src = elt.getAttribute('src');
	elt.setAttribute('src', src.replace(/(.*)on.gif/, "$1off.gif"));
}
