
jQuery(function($){

	$("img.rollover").mouseover(function() {

		$(this).attr("src", $(this).attr("src").replace("_off","_on"));
	
	 });
	$("img.rollover").mouseout(function() {

		$(this).attr("src", $(this).attr("src").replace("_on", "_off"));
	});
});



