// JavaScript Documen

// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.

// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 7000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 3;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this

// Specify the image files...
// To add more images, just continue
// the pattern, adding to the array below.
// To use fewer images, remove lines
// starting at the end of the Picture array.
// Caution: The number of Pictures *must*
// equal the number of Captions!

Picture[1]  = 'images/front/1.jpg';
Picture[2]  = 'images/front/2.jpg';
Picture[3]  = 'images/front/3.jpg';
Picture[4]  = 'images/front/4.jpg';
Picture[5]  = 'images/front/5.jpg';
Picture[6]  = 'images/front/6.jpg';
Picture[7]  = 'images/front/7.jpg';
Picture[8]  = 'images/front/8.jpg';
Picture[9]  = 'images/front/9.jpg';
Picture[10]  = 'images/front/10.jpg';
Picture[11]  = 'images/front/11.jpg';
Picture[12]  = 'images/front/12.jpg';

// Specify the Captions...
// To add more captions, just continue
// the pattern, adding to the array below.
// To use fewer captions, remove lines
// starting at the end of the Caption array.
// Caution: The number of Captions *must*
// equal the number of Pictures!

Caption[1]  = "Students, faculty, and staff march in the annual “Take Back the Night” rally to bring awareness about sexual assault and its prevention.";
Caption[2]  = "2008 Outstanding Women Leader Award winners for faculty and staff: Khadija Khaja, Denise Scroggins, Meagan Senesac, and Unchana Thamasak. Not pictured -Trudy Banta.";
Caption[3]  = "Artist D. Delreverda-Jennings made the keynote speech and exhibited two works of art for “Women’s Art, Women’s Vision” the theme of the 2008 IUPUI Women’s History Month Leadership reception.";
Caption[4]  = "Selection committee member Amanda Helman presents award to Denise Scroggins, 2008 Outstanding Woman Part-time Faculty/Staff winner.";
Caption[5]  = "Herron School of Art and Design faculty member Stephanie Doty curates display of women’s art for “Women’s Art, Women’s Vision” at the 2008 IUPUI Women’s Leadership Awards Reception.";
Caption[6]  = "Students Krishna Patel, Martsyl Joseph, Thint T. Cho, and Ma Sabe help celebrate the 10th anniversary of the IUPUI Office for Women.";
Caption[7]  = "The Grand Opening of the new IUPUI Nursing Mother’s Room in the Purdue School of Engineering and Technology is celebrated by Kathy Grove, IUPUI Office for Women, Maggie Stimming, HR Work/Life Coordinator, Ellen Poffenberger, Assistant Vice Chancellor for Human Resources Administration, H. Oner Yurtseven, Dean of the Engineering School and Lisa Jones, Administrative Assistant to the Dean.";
Caption[8]  = "IUPUI graduate students Josh and Christine Wise and son, Henry, check out the new Nursing Mother’s Room at the Grand Opening.";
Caption[9]  = "Dr. Shirley Mueller, investment advisor, counts her savings at the “Investing 101” lecture sponsored by the Office for Women.";
Caption[10]  = "Professor Kim White-Mills, Chair of Communication Studies, discusses portfolio development at the Advancing Women in Leadership workshop.";
Caption[11]  = "Professor Margaret Ferguson, Political Science, and Professor Kristina Sheeler, Communications Studies, discuss their recently published books during 'Spotlight on Scholarship.'";
Caption[12]  = "Students pick up information about safety and potential health risks during the annual Spring Break Health and Safety Resource Fair.";
//Caption[9]  = "This is the ninth caption.";
//Caption[10] = "This is the tenth caption.";

// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;
var slide = 4;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function runSlideShow(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}


function changeSlideShow(numToChange){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[numToChange].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[numToChange];
//if (document.getElementById) document.getElementById("CaptionBox").innerHTML= "";
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
//jss = jss + 1;
//if (jss > (pss)) jss=1;
//tss = setTimeout('runSlideShow()', SlideShowSpeed);
}

function changeSlideShow1(numToChange){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[numToChange].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[numToChange];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
//jss = jss + 1;
//if (jss > (pss)) jss=1;
//tss = setTimeout('runSlideShow()', SlideShowSpeed);
}


function hideSlideCaption(numToChange){
if (document.all){
}
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= "";
//jss = jss + 1;
//if (jss > (pss)) jss=1;
//tss = setTimeout('runSlideShow()', SlideShowSpeed);
}