function scrollbar_init()
{
    $('#scroll').jScrollPane(
    {
      showArrows:true
    }
    );
}


function afficheOnglet(elt)
{
    $('.pwi_container .pwi_photo').stop(true, true).hide();
    $('#navwork a').removeClass('actif');

    id_elt = elt.attr('id');

    $('#'+id_elt).addClass('actif');

    $('#sec_'+id_elt+' .pwi_photo').each(function(index) {
      $(this).delay(200*index).fadeIn(400);
    });
}


$(function() {
	scrollbar_init();

  if ( $('#longsmetrages').length == 1 )
  {
    afficheOnglet($('#longsmetrages'));
  }
  if ( $('#epcollaborations').length == 1 )
  {
    afficheOnglet($('#epcollaborations'));
  }

  $('#navwork a').click(function(event) {
      afficheOnglet($(this));
  });

  $(".pwi_photo a").prettyPhoto({social_tools: ''});

});

