// JavaScript Document

$(function(){
	$("img.changeOver").mouseover( function(){ $(this).attr("src",$(this).attr("src").replace("off","on"));  } );
	$("img.changeOver").mouseout( function(){ $(this).attr("src",$(this).attr("src").replace("on","off"));  } );
});



