function photokonkurs() {
$('a[rel*=lightbox]').lightBox({
				txtImage: 'Изображение',
				txtOf: 'из' 	 
		});
	$.each($('.rate'),function(){
		var id = $(this).attr('id')+'';
		
		var matches = id.match(/^r-([0-9]+)-([0-9]+)-([a-z]+)$/);
		var rating = parseInt(matches[2]);
		if (matches[3]=='false') {
			var enabled = false;	
		} else {
			var enabled = true;
		}
		
		$(this).starRating({sucess: rate_success,
			rating:rating,
			clickable:enabled,
			hoverable:enabled,
		customParams: {photo:matches[1]} });
	});
}
function rate_success(params) {
	var c=parseInt($('#vote_count'+params['photo']).text())+1;
	$('#vote_count'+params['photo']).text(c);
}

