Code:
jQuery(function() {
var ary=['pictures/Croatia-2.jpg','pictures/Galapagos.jpg','pictures/Vietnam-Beach.jpg','pictures/Antarctica.jpg','pictures/Canada.jpg','pictures/Elephant Expeditions main page.jpg','pictures/Indochina main page.jpg','pictures/Laos main page.jpg'];
ary.shuffle();
jQuery('#ccc').crossSlide({
sleep: 5,
fade: 3
}, [
{ src: ary[0] },
{ src: ary[1] },
{ src: ary[2] },
{ src: ary[3] },
{ src: ary[4] },
{ src: ary[5] },
{ src: ary[6] },
{ src: ary[7] }
]);
});
Array.prototype.shuffle=function(){
for (var r,t,z0=0;z0<this.length;z0++){
r=Math.floor(Math.random()*this.length);
t=this[z0];
this[z0]=this[r];
this[r]=t;
}
}
Bookmarks