// Start jQuery
$(function() {
	
	// Start script to change rollovers
	// This says "when I hover over an image..."
	$("#navigation_link img").hover(function() {
		// This says "When I rollover an image, replace the "_off" in the filename with "_on".  This will load the rollover image.
		this.src = this.src.replace("_off","_on");
	// Ok, we've changed the image for rollovers, now we have to restore them...
	}, function() {
		// This line sets everything back to normal once the mouse rolls off the image.
		this.src = this.src.replace("_on","_off");
	});
	// End script to change rollovers	
	
// Close jQuery
});
