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