//<!--
// 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.
visit = new makeArray(5);
visit[0] = '<a href="../revolutionary_parks/tour_the_revolution.html"><img src="../images/rotating_images/visit_a_park/3.gif" width="599" height="52" alt="Image: Click to visit a National Park." border="0"></a>';
visit[1] = '<a href="../revolutionary_parks/tour_the_revolution.html"><img src="../images/rotating_images/visit_a_park/4.gif" width="599" height="52" alt="Image: Click to visit a National Park." border="0"></a>';
visit[2] = '<a href="../revolutionary_parks/tour_the_revolution.html"><img src="../images/rotating_images/visit_a_park/6.gif" width="599" height="52" alt="Image: Click to visit a National Park." border="0"></a>';
visit[3] = '<a href="../revolutionary_parks/tour_the_revolution.html"><img src="../images/rotating_images/visit_a_park/7.gif" width="599" height="52" alt="Image: Click to visit a National Park." border="0"></a>';
visit[4] = '<a href="../revolutionary_parks/tour_the_revolution.html"><img src="../images/rotating_images/visit_a_park/8.gif" width="599" height="52" alt="Image: Click to visit a National Park." border="0"></a>';
// The random number generator.
function rand2(n) {
	seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}

var now = new Date()
var seed = now.getTime() % 0xffffffff
//-->