$(document).ready(function(){ 
	$("img[src*='_off']").addClass("current"); 
	
	$("img,input").mouseover(function(){ 
		if ($(this).attr("src")){ 
			$(this).attr("src",$(this).attr("src").replace("_on.", "_off.")); 
		} 
	}); 
	
	$("img").mouseout(function(){ 
		if ($(this).attr("src")){ 
			$(this).attr("src",$(this).attr("src").replace("_off.", "_on.")); 
		} 
	}); 
});
