$(document).ready(function() {	$('input[type="image"]').hover(		function () { $(this).attr("src", $(this).attr("src").split('Off').join('On')); },
		function () { $(this).attr("src", $(this).attr("src").split('On').join('Off')); }	);
	$('a img').hover(		function () { $(this).attr("src", $(this).attr("src").split('Off').join('On')); },		function () { $(this).attr("src", $(this).attr("src").split('On').join('Off')); }	);})