function handle_fail() {
	$.modaldialog.warning("Pre tento recept ste už hlasovali. Je možné hlasovať len jeden krát pre každý recept. ", {
		title: 'Hlasovanie',
		width: 300
	});				
}

function handle_success() {
	$.modaldialog.success("Ďakujeme za Váš hlas. ", {
		title: 'Hlasovanie',
		width: 300
	});				
}

$(document).ready(function() {

	var hodnotenie = $("p.recept_rater_desc").attr('id').substr(19);

	$('.recept_rater_area').starRating({
		basicImage	: base_url + 'media/js/rating/small/star_hover.gif',
		ratedImage	: base_url + 'media/js/rating/small/star.gif',
		hoverImage	: base_url + 'media/js/rating/small/star.gif',
		rating		: hodnotenie,
		ratingUrl	: base_url + 'ajax/recept_hodnot',
		clickable	: true,
		hoverable	: true,
		failure		: handle_fail,
		sucess		: handle_success
	});

});
