




jQuery(function($) {
	
	// init favorites
	WEVote.initButtons();
	
	// init star rating
	$('.ratingsWrapper').each(function() {
		var resource_id = this.id.split('_')[1];
		// console.log('id=',resource_id);
		$('#Ratings_'+resource_id+'').stars({
				split: 2,
				captionEl: $('#RatingsCaption_'+resource_id+''),
				callback: function(ui, type, value) {
					WEVote.sendRating(resource_id, value);
				}
		});
	});
	// $('.ratingsWrapper').stars({
	// 	split: 2,
	// 	captionEl: $("#stars-wrapper2-cap")
	// });

});

