$(document).ready(function() {		
	$(".voting-wrapper .toggle-result").click(function () {
		$(this).toggleClass('opened');
		$(this).parents('.voting-result').find(".voting-result-list").toggle();
	});
});
