
$(document).ready(function() { 

	$("#stars-wrapper1").stars({
		oneVoteOnly: true,
		callback: function(ui, type, value){
			var str = $("body").attr("id");
			var photoId = str.substr(8,str.length);
			window.location.href = '/rate.php?photoId='+photoId+'&rate=' + value;
		}
	});
	
	$("h1").css("cursor", "pointer");
	
	$("h1").click(function() {
		location.href = "/";
	});
	
});