		<!-- Begin
// Set up the image files to be used.
var img = new Array()
// To add more image files, continue with the
// pattern below, adding to the array.

img[0] = '/flash/header.swf';
img[1] = '/flash/header.swf';

// img[0] = '/grfx/flash/headerSmall_05.swf';
// img[1] = '/grfx/flash/smallTree_01.swf';

// do not edit anything below this line

var j = 0
var p = img.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = img[i]
}
var choice = Math.round(Math.random()*(p-1));

function showSmallImage(){

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 -->