$(document).ready(function(){
	$(".element_apercu")
		.livequery(function() { // Comportement de bouton vers le billet associé.
			$(this).click(function(){
				var idefix = $(this).attr('id'); 
				//$('#input_test').val(idefix);
				num = idefix.substring(14,idefix.length);
				$(".billet").each(function(){
					$(this).fadeOut("slow");
				});
				$("#billet_"+num).fadeIn("slow");
			});
	});
	
	$('.element_apercu') 
    	.livequery(function() { // Comportement de hover.
			$(this).hover(function(){
				$(this).addClass("element_apercu_hover");
					},function(){
				$(this).removeClass("element_apercu_hover");
			});
    });
		
	/*$('.element_apercu') 
    	.livequery(function() { // Ajuste l'opacité des éléments.
			$(this).fadeTo("fast", 0.5);
    });*/
});
	

	
	
