function RunFlash()
{

swfFiles= new Array()
//Set Flash sources, widths and heights
swfFiles[0]=['HomePageAnimation01.swf', 748, 188 ]
swfFiles[1]=['HomePageAnimation02.swf', 748, 188 ]
swfFiles[2]=['HomePageAnimation03.swf', 748, 188 ]
swfFiles[3]=['HomePageAnimation04.swf', 748, 188 ]
swfFiles[4]=['HomePageAnimation05.swf', 748, 188 ]
swfFiles[5]=['HomePageAnimation06.swf', 748, 188 ]

////////////////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=6,0,0,0" \
HEIGHT="'+swfFiles[0][2]+'" WIDTH="'+swfFiles[0][1]+'" ALIGN=""> \
<PARAM NAME="movie" VALUE="'+swfFiles[0][0]+'"> \
<PARAM NAME="quality" VALUE="high"> \
<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>\
')


}
