;jQuery(function($){
	if(!$('#star_rating').length) return;
	
	$.extend(ratySettings, {
		'width' : 'auto',
		'click' : function(score, evt){
			console.log(ratySettings);
			// Save the rating and displau the message
			$('#star_rating').animate({'opacity':0.5}, 'fast');
			$.ajax(ratySettings.voteUrl,{
				data : {
					rating : score,
					post : ratySettings.post
				},
				type : 'POST',
				success : function(){
					$('#star_rating').animate({'opacity':1}, 'slow');
					$('#star_rating_message').fadeIn('slow');
				}
			});
		}
	});
	$('#star_rating').raty(ratySettings);
});
