jQuery.noConflict();
		jQuery(document).ready(function($) {
		$("img.rollover").hover(
			function () {
				$(this).attr("src", $(this).attr("src").replace("_On", "_Over"));
			},
			function () {
				$(this).attr("src", $(this).attr("src").replace("_Over", "_On"));
			}
		);
		
	});


