$(function() {
	$('.unitRating .rater')
		.mouseover(function(){
			$(this).removeAttr('href');
			id = $(this).parent().attr('class').replace('rate-li-', '');
			ctid = $("#contenttypeid").val();

			if($.cookie("vote" + ctid + id) == "true")
				$('.rate-li-' + id).remove();
		})
		.click(function(){
			id = $(this).parent().attr('class').replace('rate-li-', '');
			rate = $(this).text();
			ctid = $("#contenttypeid").val();
			
			
			
			$.ajax({ 
				type: "GET",
				url: "/rating.php",
				data: "t=star&c="+ id +"&ct="+ ctid +"&r=" + rate,
				success: function(msg){
					if(msg != "err"){
						wd = (Math.round(msg * 21)) + 'px';
						$('#rate-ul-' + id + ' > .currentRating').css({width: wd});
						$('.rate-li-' + id).remove();
					}else{
						$('.rate-li-' + id).remove();
					}
				}
			});
		})
});
