//<!--
// 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.
arthome = new makeArray(13);
arthome[0] = '<a href="http://www.metroatlantaartsfund.org/misc/photo_credits.html"><img src="images/home_rotate/01.gif" width="552" height="183" alt="The Contemporary, Form Derivation by Leslie Snipes" border="0"></a>';
arthome[1] = '<a href="http://www.metroatlantaartsfund.org/misc/photo_credits.html"><img src="images/home_rotate/02.gif" width="552" height="183" alt="Youth Ensemble of Atlanta, Times, photo by Korey Washington" border="0"></a>';
arthome[2] = '<a href="http://www.metroatlantaartsfund.org/misc/photo_credits.html"><img src="images/home_rotate/03.gif" width="552" height="183" alt="The Contemporary, Big Pink Elephant by Neil Bender" border="0"></a>';
arthome[3] = '<a href="http://www.metroatlantaartsfund.org/misc/photo_credits.html"><img src="images/home_rotate/04.gif" width="552" height="183" alt="7 Stages, Pig Iron Theatre Company in FLOP" border="0"></a>';
arthome[4] = '<a href="http://www.metroatlantaartsfund.org/misc/photo_credits.html"><img src="images/home_rotate/05.gif" width="552" height="183" alt="Michael ONeal Singers, Hooray for Hollywood, photo by Mary Thompson" border="0"></a>';
arthome[5] = '<a href="http://www.metroatlantaartsfund.org/misc/photo_credits.html"><img src="images/home_rotate/06.gif" width="552" height="183" alt="7 Stages, Waiting for Godot, photo by Yvonne Boyd" border="0"></a>';
arthome[6] = '<a href="http://www.metroatlantaartsfund.org/misc/photo_credits.html"><img src="images/home_rotate/07.gif" width="552" height="183" alt="Art Station, UH-OH, Here Comes Christmas" border="0"></a>';
arthome[7] = '<a href="http://www.metroatlantaartsfund.org/misc/photo_credits.html"><img src="images/home_rotate/08.gif" width="552" height="183" alt="7 Stages, Master Harold, photo by Yvonne Boyd" border="0"></a>';
arthome[8] = '<a href="http://www.metroatlantaartsfund.org/misc/photo_credits.html"><img src="images/home_rotate/09.gif" width="552" height="183" alt="Michael ONeal Singers, Hooray for Hollywood, photo by Mary Thompson" border="0"></a>';
arthome[9] = '<a href="http://www.metroatlantaartsfund.org/misc/photo_credits.html"><img src="images/home_rotate/10.gif" width="552" height="183" alt="Dad\'s Garage, For Whom the Bell Jingles, photo by Linnea Frye" border="0"></a>';
arthome[10] = '<a href="http://www.metroatlantaartsfund.org/misc/photo_credits.html"><img src="images/home_rotate/11.gif" width="552" height="183" alt="Full Radus Dance, photo by Neil Dent Photography" border="0"></a>';
arthome[11] = '<a href="http://www.metroatlantaartsfund.org/misc/photo_credits.html"><img src="images/home_rotate/12.gif" width="552" height="183" alt="Theatrical Outfit, The Island, photo by Yolanda Salas" border="0"></a>';
arthome[12] = '<a href="http://www.metroatlantaartsfund.org/misc/photo_credits.html"><img src="images/home_rotate/13.gif" width="552" height="183" alt="7 Stages, Iphigenia" 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
//-->
