// JavaScript Document

/* First differentiate the images with _off and _on in the file names.  Then apply a class or "rollover" to the off image for the desired effect. */

$(document).ready(function() {
		
		$("img.rollover").hover(
 function()
 {
  this.src = this.src.replace("_off","_on");
 },
 function()
 {
  this.src = this.src.replace("_on","_off");
 }
);
		
	
	});
