swfFiles= new Array()
//Set Flash sources
swfFiles[0]=['swf/banner01.swf']
swfFiles[1]=['swf/banner02.swf']
swfFiles[2]=['swf/banner03.swf']
swfFiles[3]=['swf/banner04.swf']
swfFiles[4]=['swf/banner05.swf']

////////////////No Need to Edit Below Here//////////////

//Randomizing Unit Courtesy of Mike Winter as seen at:
//http://www.dynamicdrive.com/forums/showthread.php?p=8442
function random(n) {
return Math.floor((Math.random() % 1) * n);
}

Array.prototype.shuffle = function() {var i = this.length;
while(i--) {this.swap(i, random(i + 1));}
};
Array.prototype.swap = function(x, y) {
var t = this[x]; this[x] = this[y]; this[y] = t;
};

swfFiles.shuffle()