function initHover()
{
	$("ul.form input.submit").hover(
		function(){ $(this).addClass('hover'); },
		function(){ $(this).removeClass('hover');}
	);
}

$(document).ready(function(){
	initHover();
});
