$(document).ready(function() {
	
	$(".button-submit").hover(
		function() {
			$(this).attr("src","images/button-submit-light.gif");
		},
		function() {
			$(this).attr("src","images/button-submit-dark.gif");
		}
	);
	
});
