// JavaScript Document


function randImgCap()
{
var banner = new Array();
banner[0] ="images/homepage/JFW_1.jpg"
banner[1] ="images/homepage/JFW_2.jpg"
banner[2] ="images/homepage/Leopold_1.jpg"
banner[3] ="images/homepage/Anthony1.jpg"
banner[4] ="images/homepage/Jay1.jpg"
banner[5] ="images/homepage/Ori1.jpg"
banner[6] ="images/homepage/Class_10_2011.jpg"
banner[7] ="images/homepage/WDSRA_1.jpg"
banner[8] ="images/homepage/CubScouts_2_2011.jpg"
banner[9] ="images/homepage/Girl_Scouts_01.jpg"
banner[10] ="images/homepage/Girl_Scouts_02.jpg"
banner[11] ="images/homepage/Girl_Scouts_03.jpg"
banner[12] ="images/homepage/Contempo.jpg";

var caption = new Array();
caption[0] = "Taping of the &quot;JF Williams Ministries&quot; show at the Waukegan studio."
caption[1] = "Access Producer Melissa Knox directs the &quot;JF Williams Ministries&quot; taping at the Waukegan studio."
caption[2] = "An audience watches a taping of &quot;Leopold's World of Magic&quot; at the Waukegan studio."
caption[3] = "Access producer Anthony Lucente operates the video switcher during a studio production."
caption[4] = "Access producer Jay Steinberg operates one of the portable cameras during a public access production."
caption[5] = "Access producer David Ori tapes a scene for his zombie movie &quot;Rise of the Dead&quot;."
caption[6] = "Waukegan Public Access Class - October 2010"
caption[7] = "WDSRA (Western Dupage Special Recreation Association) tapes an episode of &quot;Video Ventures&quot; at the Elmhurst studio."
caption[8] = "A Cub Scout troop from Libertyville tours the Waukegan studio. February 2011."
caption[9] = "A Girl Scout Troop from Libertyville tours the Waukegan studio. April 2011."
caption[10] = "A Girl Scout Troop from Libertyville tours the Waukegan studio. April 2011."
caption[11] = "A Girl Scout Troop from Libertyville tours the Waukegan studio. April 2011."
caption[12] = "A taping of the show &quot;Contempo&quot; at the Skokie studio.";
random = Math.floor(Math.random() * banner.length);
document.getElementById ('randomImage').src = banner[random];
document.getElementById ('caption').innerHTML = caption[random];
}

