$(function() {
	$('.stars').click(function(){
		$(this).toggleClass('active');
		var checkBoxId = $(this).attr('id').substr(2);
		if ($(this).hasClass('active')) {
			$('#' + checkBoxId).attr('checked', 'checked');
		} else {
			$('#' + checkBoxId).removeAttr('checked');
		}
	});
});

