$(function() {

	$("input.submit").hover(on,off);
});


function on(){$(this).addClass('on');}
function off(){$(this).removeClass('on');}
