$(document).ready(function(){

//	Add a class to the body to indicate the presence of JavaScript.
//	$("body").addClass("has_js");


// Image Button Rollovers
	var rolloverInputs = $(".rollover");
	rolloverInputs.hover(function(){
		// Over : replace the src attribute with the "_on" version.
		var newSrc = $(this).attr("src").replace("_off.","_on.");
		$(this).attr("src",newSrc);
	},function(){
		// Out : replace the src attribute with the "_off" version.
		var newSrc = $(this).attr("src").replace("_on.","_off.");
		$(this).attr("src",newSrc);
	});
	
});
