//<!--
// 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.
art = new makeArray(15);
art[0] = '<img src="images/rotating_images/home/1.gif" width="292" height="102" alt="Image: Visit a National Park to learn more about the American Revolution." border="0">';
art[1] = '<img src="images/rotating_images/home/2.gif" width="292" height="102" alt="Image: Visit a National Park to learn more about the American Revolution." border="0">';
art[2] = '<img src="images/rotating_images/home/3.gif" width="292" height="102" alt="Image: Visit a National Park to learn more about the American Revolution." border="0">';
art[3] = '<img src="images/rotating_images/home/4.gif" width="292" height="102" alt="Image: Visit a National Park to learn more about the American Revolution." border="0">';
art[4] = '<img src="images/rotating_images/home/5.gif" width="292" height="102" alt="Image: Visit a National Park to learn more about the American Revolution." border="0">';
art[5] = '<img src="images/rotating_images/home/6.gif" width="292" height="102" alt="Image: Visit a National Park to learn more about the American Revolution." border="0">';
art[6] = '<img src="images/rotating_images/home/7.gif" width="292" height="102" alt="Image: Visit a National Park to learn more about the American Revolution." border="0">';
art[7] = '<img src="images/rotating_images/home/8.gif" width="292" height="102" alt="Image: Visit a National Park to learn more about the American Revolution." border="0">';
art[8] = '<img src="images/rotating_images/home/9.gif" width="292" height="102" alt="Image: Visit a National Park to learn more about the American Revolution." border="0">';
art[9] = '<img src="images/rotating_images/home/10.gif" width="292" height="102" alt="Image: Visit a National Park to learn more about the American Revolution." border="0">';
art[10] = '<img src="images/rotating_images/home/14.jpg" width="292" height="102" alt="Image: Visit a National Park to learn more about the American Revolution." border="0">';
art[11] = '<img src="images/rotating_images/home/16.gif" width="292" height="102" alt="Image: Visit a National Park to learn more about the American Revolution." border="0">';
art[12] = '<img src="images/rotating_images/home/18.gif" width="292" height="102" alt="Image: Visit a National Park to learn more about the American Revolution." border="0">';
art[13] = '<img src="images/rotating_images/home/20.jpg" width="292" height="102" alt="Image: Visit a National Park to learn more about the American Revolution." border="0">';
art[14] = '<img src="images/rotating_images/home/19.gif" width="292" height="102" alt="Image: Visit a National Park to learn more about the American Revolution." 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
//-->
