
	$(document).ready(function() {					
			$(".FormButton").hover(
			  function () {
				$(this).attr("src",$(this).attr("src").replace("_off", "_on"));
			  }, 
			  function () {
				$(this).attr("src",$(this).attr("src").replace("_on", "_off"));
			  }
			);
			$(".ImageButton").hover(
			  function () {
				$(this).attr("src",$(this).attr("src").replace("_off", "_on"));
			  }, 
			  function () {
				$(this).attr("src",$(this).attr("src").replace("_on", "_off"));
			  }
			);
			
	});
	
    