$(document).ready(function(){
	$(".star").live("mouseover", function(){
		var starNR = $(this).attr("alt")
		//alert(starNR);
		var count = 0;
		$(".star").each(function(){
			//alert($(this));
			$(this).attr("src", "img/icons/starFull.png");
			count++;
			if(count == starNR)
				return false;
		});
	});
	$(".star").live("mouseout", function(){
		//alert("out");
		$(".star").each(function(){
			$(this).attr("src", "img/icons/starEmpty.png");
		});
	});
});

//picID = bild id (duh..), value = hur fin bilden är (1 = dåligt, 5 = bäst)
function VoteImage(picID, value){
	//alert(picID);
	//rösta genom ajax (jquery)
	$(".stars").html("<img src=\"img/ajax-loader.gif\" alt=\"loading...\" />");
	$.get("voteImage.asp", { imgID:picID, amount:value }, function(data){
		//alert(data);
		$(".stars").html("<h3>"+data+"</h3>");
	});
}