// JavaScript Document

//<!--
// The Array Function 
function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

// This is where the array of text/images/sounds is created.
environmental = new makeArray(5);
environmental[0] = '<img src="images/environmental/image1.jpg" width="109" height="110" alt="" border="0">';
environmental[1] = '<img src="images/environmental/image2.jpg" width="109" height="110" alt="" border="0">';
environmental[2] = '<img src="images/environmental/image4.jpg" width="109" height="110" alt="" border="0">';
environmental[3] = '<img src="images/environmental/image5.jpg" width="109" height="110" alt="" border="0">';
environmental[4] = '<img src="images/environmental/image6.jpg" width="109" height="110" alt="" border="0">';

rapidSite = new makeArray(5);
rapidSite[0] = '<img src="images/rapidSite/image1.jpg" width="109" height="110" alt="" border="0">';
rapidSite[1] = '<img src="images/rapidSite/image3.jpg" width="109" height="110" alt="" border="0">';
rapidSite[2] = '<img src="images/rapidSite/image4.jpg" width="109" height="110" alt="" border="0">';
rapidSite[3] = '<img src="images/rapidSite/image5.jpg" width="109" height="110" alt="" border="0">';
rapidSite[4] = '<img src="images/rapidSite/image6.jpg" width="109" height="110" alt="" border="0">';


remediation = new makeArray(7);
remediation[0] = '<img src="images/remediation/image1.jpg" width="109" height="110" alt="" border="0">';
remediation[1] = '<img src="images/remediation/image2.jpg" width="109" height="110" alt="" border="0">';
remediation[2] = '<img src="images/remediation/image3.jpg" width="109" height="110" alt="" border="0">';
remediation[3] = '<img src="images/remediation/image4.jpg" width="109" height="110" alt="" border="0">';
remediation[4] = '<img src="images/remediation/image5.jpg" width="109" height="110" alt="" border="0">';
remediation[5] = '<img src="images/remediation/image6.jpg" width="109" height="110" alt="" border="0">';
remediation[6] = '<img src="images/remediation/image7.jpg" width="109" height="110" alt="" border="0">';

training = new makeArray(1);
training[0] = '<img src="images/training/image1.jpg" width="109" height="110" alt="" border="0">';

// The random number generator.
function rand2(n) {
	seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}

var now = new Date()
var seed = now.getTime() % 0xffffffff

// this part goes in the html
/*<SCRIPT LANGUAGE = "JavaScript">document.write(footer[rand2(footer.length)])</SCRIPT>*/
//-->