$(document).ready(function() {
  $('div.team-list div.moreInfo').hide();  
  $('div.team-list h5').click(function() {
    var $nextDiv = $(this).next();
    var $visibleSiblings = $nextDiv.siblings('div.moreInfo:visible');
 
    if ($visibleSiblings.length ) {
      $visibleSiblings.slideUp('fast', function() {
        $nextDiv.slideToggle('fast');
      });
    } else {
       $nextDiv.slideToggle('fast');
    }
  });
  
  
	$("div.scrollable").scrollable({
		size: 10, // number of pictures per page
		next: '#next', // id of next control element
		prev: '#prev', // id of prev control element
		navi:'#navi' // id of navigation control holder
	});
	$("#albums img").bind("click", function(){
		$("#a_title").text($(this).attr('title'));
		$("#pic_holder").html('<div class="loading"><img src="../images/loading.gif" alt="Chargement..."></div>').load("/_includes/_ajax.php",{"aID":$(this).attr("ref")},function(){
			$("#pic_holder").find("a").fancybox();
		});
	});  
	
	
	
});
