$(document).ready(function() {
	if ($(".active").attr("src") != undefined) {
		$(".active").attr("src", $(".active").attr("src").replace("/off/", "/on/"));
		$(".active").removeClass("rollover");
	}
	$(".rollover").hover(
		function() { $(this).attr("src", $(this).attr("src").replace("/off/", "/on/"))},
		function() { $(this).attr("src", $(this).attr("src").replace("/on/", "/off/"))}
	);
});