// JavaScript Document



swfFiles= new Array()
//Set Flash sources, widths and heights
swfFiles[0]=['swf/index1.swf', 703, 288 ]
swfFiles[1]=['swf/index2.swf', 703, 288 ]
swfFiles[2]=['swf/index4.swf', 703, 288 ]


////////////////No Need to Edit Below Here//////////////


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()
//End Randomizing Unit


document.write('\
<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" \
CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" \
HEIGHT="'+swfFiles[0][2]+'" WIDTH="'+swfFiles[0][1]+'" ALIGN=""> \
<PARAM NAME="movie" VALUE="'+swfFiles[0][0]+'"> \
<PARAM NAME="quality" VALUE="high"><PARAM NAME="BGCOLOR" VALUE="#000000"> \
<embed src="'+swfFiles[0][0]+'" \
quality="high" \
pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" \
type="application/x-shockwave-flash" \
height="'+swfFiles[0][2]+'" width="'+swfFiles[0][1]+'"></embed> \
</object>\
')