$(window).load(function(){
	$(document).ready(function(){
		$("#stars").find(".star").mousemove(function(){
			$(this).prevAll().removeClass("a");
			$(this).nextAll().removeClass("h");
			$(this).removeClass("a");
			$(this).addClass("h");
			$(this).prevAll().addClass("h");
			$(this).nextAll().addClass("a");
			$(this).click(function(){
				var betyg = $(this).index() + 1;
				$("#stars input[name='betyg']").attr('value', betyg);
				$('#betyg').submit();
			});
		})
		$("#stars").mouseleave(function(){
			$(".star").removeClass("h");
			$(".star").addClass("a");
		});
	});
});
