img = new Array();
img[0] = "./swf/image.swf";
img[1] = "./swf/image2.swf";
n = Math.floor(Math.random()*img.length);
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' WIDTH='900' HEIGHT='191' id='image' ALIGN=''>");
document.write("<PARAM NAME=movie VALUE='"+img[n]+"'>");
document.write("<PARAM NAME=quality VALUE=high>");
document.write("<PARAM NAME=scale VALUE=noscale>");
document.write("<PARAM NAME=bgcolor VALUE=#8BB2CF>");
document.write("<EMBED src='"+img[n]+"' quality=high scale=noscale bgcolor=#8BB2CF  WIDTH='900' HEIGHT='191' NAME='image' ALIGN='' TYPE='application/x-shockwave-flash' PLUGINSPAGE='http://www.macromedia.com/go/getflashplayer'>");
document.write("</EMBED>");
document.write("</OBJECT>");
