// docwriteintro.js

<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'header_v2.swf'
theImages[1] = 'header_v2.swf'

// do not edit anything below this line

var j = 0
var p = theImages.length;
//var preBuffer = new Array()
//for (i = 0; i < p; i++){
//   preBuffer[i] = new Image()
//   preBuffer[i].src = theImages[i]
//}
var whichImage = Math.round(Math.random()*(p-1));

document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="746" height="246">');
document.write('<param name="movie" value="/Flash/'+theImages[whichImage]+'">');
document.write('<param NAME="wmode" VALUE="transparent">');
document.write('<param name="quality" value="high">');
document.write('<embed src="/Flash/'+theImages[whichImage]+'" quality="high" wmode="opaque" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="746" height="246"></embed></object>');

