<!-- Begin
// Set up the image files to be used.
var images = new Array() // do not change this
var img = new Array()
// To add more image files, continue with the
// pattern below, adding to the array.

images[0] = '/flash/headerLarge_06.swf'
images[1] = '/flash/mockLargetree_09.swf'

img[0] = '/flash/headerSmall_02.swf';
img[1] = '/flash/smallTree_02.swf';

// do not edit anything below this line

var j = 0
var p = images.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = images[i]
}
var choice = Math.round(Math.random()*(p-1));

function showImage(){

document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="1014" height="357" title="Fischler School - Cause An Effect">');
document.write('<param name="movie" value="' +images[choice]+ '" />');
document.write('<param name="quality" value="high" />');
document.write('<embed src="' +images[choice]+ '" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="1014" height="357"></embed>');
document.write('</object>');

}

function showSmallImage(){

document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="1014" height="357" title="Fischler School - Cause An Effect">');
document.write('<param name="movie" value="' +img[choice]+ '" />');
document.write('<param name="quality" value="high" />');
document.write('<embed src="' +img[choice]+ '" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="1014" height="357"></embed>');
document.write('</object>');

/* document.write('<script type="text/javascript">');
document.write('var mySWF = new SWFObject("' +img[choice]+ '", "headerSWF", 1014, 150, 8, "#000000");');
document.write('mySWF.addParam("allowScriptAccess", "always");');
document.write('mySWF.addVariable("degreeFinderDataSource", "/data/degreeFinder.xml");');
document.write('mySWF.write("header");');
document.write('</script>');
*/
}

//  End -->