
/****	VOTES MEDIA 	****/
$(document).ready(function() {
	$('.bloc_votez').each(function() {
		current_vote = $(this).attr('class').replace('bloc_votez vote_', '');
		current_id = $(this).attr('id').replace('bloc_vote_', '');
		if (isNaN(current_vote) || current_vote < 0 || current_vote > 5) current_vote = 5;
		current_vote = current_vote;
		$(this).rater('participations_x_vote.php?id_photo='+current_id, {curvalue:current_vote});
	});
	
	$('.cadre_img, .pict_view').click(function(e) {
		$.fn.colorbox({href:$(this).attr('href'), iframe:true, width:640, height:500});
		e.preventDefault();
	});
	
});

