// JavaScript Document from: http://answers.yahoo.com/question/index?qid=20080824102119AArnkDa
function randImgCap()
{
var banner = new Array(); 
banner[0] ="images/1_ncosp.jpg"
banner[1] ="images/2_mcff.jpg"
banner[2] ="images/3_fgur.jpg"
banner[3] ="images/4_connections.jpg";
banner[4] ="images/5_assessment.jpg";
banner[5] ="images/6_mapping.jpg";
banner[6] ="images/7_clickers.jpg";
banner[7] ="images/8_quote.gif";

var caption = new Array();
caption[0] = "George Nelson and Carolyn Landel led the North Cascades & Olympic Science Partnership. See the <a href='http://pandora.cii.wwu.edu/showcase2008/ncosp/'>Innovative Teaching Showcase</a> for details."
caption[1] = "Kristen French inspired 13 of her Education colleagues to join the Multicultural Faculty Fellows, a faculty learning community. See the <a href='http://pandora.cii.wwu.edu/showcase2008/mcff/'>Innovative Teaching Showcase</a> for details."
caption[2] = "Johann Neem and Pete Stelling formed the Faculty GUR Group, a six-member interdisciplinary faculty learning community. See the <a href='http://pandora.cii.wwu.edu/showcase2008/fgur/'>Innovative Teaching Showcase</a> for details."
caption[3] = "Dr. Joseph Trimble organizes his classes to build on people’s fundamental need to connect with others. View the movie on  <a href='http://pandora.cii.wwu.edu/cii/resources/modules/connections/default.asp'>Creating Classroom Connections.</a> Photo: Sadalit P. Van Buren, 2006";
caption[4] = "WWU's Institutional Assessment office has provided an in-depth <a href='http://pandora.cii.wwu.edu/cii/resources/outcomes/default.asp'>Assessment and Outcomes</a> resource on the CII's website.";
caption[5] = "Explore the online video module, <a href='http://pandora.cii.wwu.edu/cii/resources/modules/concept/default.asp'>Classroom Assessment Technique: Concept Maps</a>, a short movie featuring WWU's Dr. Karen Rohrbauck Stout.";
caption[6] = "Watch this 5-minute movie on <a href='http://pandora.cii.wwu.edu/cii/resources/modules/clickers/default.asp'>Using Clickers in the Classroom</a> and get inspired!";
caption[7] = "Professor Louis Schmier, Valdosta State University, <a href='http://therandomthoughts.edublogs.org/2009/05/11/on-caring/' target='blank'> <em>Random Thought: On Caring</em></a>";
random = Math.floor(Math.random() * banner.length);
document.getElementById('randomImage').src = banner[random];
document.getElementById('caption').innerHTML = caption[random];
}