// Homepage Rotating image

// ***********************************************
// AUTHOR: WWW.CGISCRIPT.NET, LLC
// URL: http://www.cgiscript.net
// Use the script, just leave this message intact.
// Download your FREE CGI/Perl Scripts today!
// ( http://www.cgiscript.net/scripts.htm )
// ***********************************************

function image() {
};

image = new image();
number = 0;

// imageArray
image[number++] = "<img src='http://www.vsarts.org/images/homepage/s_crawford1.jpg' alt='Artwork by Sarah Crawford, of Deleware' width='240' height='152' /><div class='small'><strong>Sarah Crawford<br />Delaware</strong></div>"
image[number++] = "<img src='http://www.vsarts.org/images/homepage/t_bubolesco2.jpg' alt='Artwork by Thierry Bobulesco, of Paris, France' width='240' height='152' /><div class='small'><strong>Thierry Bobulesco<br />Paris, France</strong></div>"
image[number++] = "<img src='http://www.vsarts.org/images/homepage/r_antar3.jpg' alt='Artwork by Robin Antar, of Brooklyn, New York' width='240' height='152' /><div class='small'><strong>Robin Antar<br />Brooklyn, New York</strong></div>"
image[number++] = "<img src='http://www.vsarts.org/images/homepage/j_duffus4.jpg' alt='Artwork by Justin Duffus, of Philadelphia, Pennsylvania' width='240' height='152' /><div class='small'><strong>Justin Duffus<br />Philadelphia, Pennsylvania</strong></div>"
image[number++] = "<img src='http://www.vsarts.org/images/homepage/m_jankovics5.jpg' alt='Artwork by Maria Jankovics, of Montreal, Canada' width='240' height='152' /><div class='small'><strong>Maria Jankovics<br />Montreal, Canada</strong></div>"
image[number++] = "<img src='http://www.vsarts.org/images/homepage/c_olhagaray6.jpg' alt='Artwork by Cesar Olhagaray, of Berlin, Germany' width='240' height='152' /><div class='small'><strong>Cesar Olhagaray<br />Berlin, Germany</strong></div>"
image[number++] = "<img src='http://www.vsarts.org/images/homepage/y_eid7.jpg' alt='Artwork by Yousef Nazzel Eid, of Kuwait' width='240' height='152' /><div class='small'><strong>Yousef Nazzal Eid<br />Kuwait</strong></div>"
image[number++] = "<img src='http://www.vsarts.org/images/homepage/r_tujuy8.jpg' alt='Artwork by Rene Juarez Tujuy, of Guatemala City, Guatemala' width='240' height='152' /><div class='small'><strong>Rene Juarez Tujuy<br />Guatemala City, Guatemala</strong></div>"
image[number++] = "<img src='http://www.vsarts.org/images/homepage/s_pronja9.jpg' alt='Artwork by Sardi Pronja, of Tirana, Albania' width='240' height='152' /><div class='small'><strong>Sardi Pronja<br />Tirana, Albania</strong></div>"
// keep adding items here...

increment = Math.floor(Math.random() * number);

document.write(image[increment]);
//-->