current_actu = 0;
$(document).ready(function() {
	
	$('#photos_bas .blocol_cont ul li a').each(function(){
		$(this).click(function(event){
			$('#actu_'+current_actu).stop().fadeOut();
			var id_click = $(this).parent().attr('id');			
			current_actu = id_click.substring(5,id_click.length);
			
			$('#actu_'+current_actu).stop().fadeIn();
			$('#pointer').css("left", $(this).position().left+40+'px');
			return false;
		});
	});
});

