$(function(){

	$('.activite:last').css('margin-right', '0px');
	$('.bloc_actualite:last').css('margin-right', '0px');

	
	
	//galerie photos
	var nb_photos = $('#liste_photos img').length;
	var slide_width = 972;
	var min_pos = 1;
	var max_pos = Math.ceil(nb_photos/6);
	var slide_pos = 1;
	
	
	$('#galerie_right').bind("click", function(){
		slide_pos = Math.min(max_pos, slide_pos+1);
		$('#liste_photos_in').animate({'margin-left':'-'+((slide_pos-1)*slide_width)+'px'}, 300);		
		return false;
	});
	
	$('#galerie_left').bind("click", function(){
		slide_pos = Math.max(min_pos, slide_pos-1);
		$('#liste_photos_in').animate({'margin-left':'-'+((slide_pos-1)*slide_width)+'px'}, 300);		
		return false;
	});
	
});
