$(document).ready(function() {
			
	if($('#currentuserscore').val() == 0){
		$('#star input[type=radio]').rating();
	}else{
		$('#star input[type=radio]').rating({currentValue:$('#currentuserscore').val()});
	}
	
	$('#star').mouseout(function(){
		$('.star').slice(0,$('#currentuserscore').val()).addClass('star_on').end();				 
	});
	

});
