$(document).ready(function(){ // This sets the opacity of the thumbs to fade down to 60% when the page loads
  $(".new_comment").click(function(){
		$("#comment_form").toggle();
  		return true;
  });


$(".juge_toggler").click(function(){
    		$(".detail_juge").hide(500);
    		$("#"+$(this).attr('rel')).stop();
    		$("#"+$(this).attr('rel')).show(500);
    		
    });
    

	initClickableEtoiles();  
});


function initClickableEtoiles()
{
  $(".bouton_etoiles > .etoiles").click(function(){
		$("#self-vote-container").load($(this).attr("rel"),{},function (tt){
				$("#member-vote-container").load($("#member-vote-url").val());
				initClickableEtoiles();
				initGlobalAnims();
			});
		return false;
  });

}