// JavaScript Document

// identification -- begin
//
//   Script: clientele.js
//
//   Auteur: Patrick Turmel - Espace Courbe Inc.
//   Site Web: http://www.espacecourbe.com/
//   Création: <2011-06-28 10:32:00 Patrick>
//
//   Fonction: Affiche contenu aléatoire 
//             
//   Dépendances: Utilise la librairie jquery 1.5.2 
//
// identification - end

jQuery(function($){
  $(document).ready(function() {
    // http://jquery.malsup.com/cycle/options.html
    // aleatoirement:
    var startHere = Math.floor(Math.random()*$('#pub-list div').length); // getting random index
    $('#pub-list').cycle({
        startingSlide: startHere,
        fx:     'fade',
        speed:  'fast',
        timeout: 0,
        next:   '#next',
        prev:   '#prev'
    });
  });      
});

