$(document).ready(function(){

	/* Diaporama navigable */	
	$("#zapnet_plus").serialScroll({
		exclude:2,
		target:'div.wrapper',
		items:'li',
		lock:false,
		prev:'a.prev',
		next:'a.next',
		constant:false,
		duration:300,
		force:true,
		start:0,
		step:3
	});

});;
(function ($) {
  Drupal.behaviors.rue89GonflesBlog = {
    attach: function(context){
      $('#show-all-blogs').click(function(){
        $('#updated-blogs-section').hide();
        $('#all-blogs-section .wrap_elements').trigger('goto', [0]);
        $('#all-blogs-section').show();
        return false;
      });
      $('#show-updated-blogs').click(function(){
        $('#all-blogs-section').hide();
        $('#updated-blogs-section .wrap_elements').trigger('goto', [0]);
        $('#updated-blogs-section').show();
        return false;
      });
    }
  }
})(jQuery);;

