$(document).ready(function(){
	var starIndex = 1;
	$('#vote_gallery label').click(function() {
		$('div.stars span').removeClass('active_' + starIndex);
		starIndex = $('#vote_gallery label').index(this)+1;
		$('span#star_' + starIndex).addClass('active_' + starIndex);
	});
});
