// Start jQuery
$(function() {
	
	$(".rollover").hover(function() {
		this.src = this.src.replace("_off","_on");
	// Ok, we've changed the image for rollovers, now we have to restore them after roll off.
	}, function() {
		this.src = this.src.replace("_on","_off");
	});
});
