function changeNav(image){
	src = image.src;
	if(src.indexOf('_off.png') > 0){
		newSrc = src.replace(/_off.png/,&quot;_on.png&quot;);
	}
	else{
		newSrc = src.replace(/_on.png/,&quot;_off.png&quot;);
	}
	image.src = newSrc;
}
