<!-- Begin
NewImg = new Array (
'images/1.jpg',
'images/2.jpg',
'images/3.jpg',
'images/4.jpg',
'images/5.jpg',
'images/6.jpg',
'images/7.jpg',
'images/8.jpg',
'images/9.jpg',
'images/10.jpg',
'images/11.jpg',
'images/12.jpg',
'images/13.jpg',
'images/14.jpg',
'images/15.jpg'
);

Caption = new Array (
"Students and advisers blogged about the day’s events at the 2009 NEWSPA conference.",
"Outgoing NEWSPA President Wendy Falk, with the help of other board members, hands out awards during the Large School Award Ceremony.",
"Former NEWSPA Executive Secretary Mike Cowling received the Skip Zacher Award at the 2009 luncheon.",
"Elizabeth Crawford taught yearbook and newspaper students about advertising design basics.",
"NEWSPA President Wendy Falk, left, presents a $500 scholarship to Allie Iserloth of Plymouth High School. Each year NEWSPA awards one or two $500 scholarships to high school seniors planning to pursue journalism in college.",
"Hundreds of students filled the Reeve Union ballroom to hear keynote speaker Lindsey Thomas talk about her journalism career. Thomas had attended NEWSPA as a high school student at Oshkosh North High School, and had been working at MTV-News until she was laid off.",
"Students line up to look at other newspaper and yearbook publications.",
"Dana Linde and Brian Yearling, Fort Atkinson High School advisers, presented “Helpful Hints for Successful Publications.”",
"Lindsey Thomas was the keynote speaker for the 2009 conference, and talked about the challenges faced by today’s journalists, as well as the rewards.",
"Erica Salkin, a UW-Madison journalism doctoral student, told students and advisers how to avoid being sued and censored.",
"Julie Warner, social media coordinator with Madison Capital Times, told students about how quickly journalism jobs are evolving.",
"Mark Stewart, sports writer for the Milwaukee Journal Sentinel, talks about how to cover sports effectively.",
"Students wait as their teachers receive their registration materials for the start of the conference at UW Oshksoh.",
"Ben Poston of the Milwaukee Journal Sentinel’s Watchdog Team gave students tips on how to do investigative reporting.",
"Green Bay Press Gazette cartoonist Joe Heller showed students how to do cariacatures and create editorial cartoons. See the Awards/Work link to see what some of the students created in his session."
);

var ImgNum = 0;
var ImgLength = NewImg.length - 1;

//Time delay between Slides in milliseconds
var delay = 3000;

var lock = false;
var run;
function chgImg(direction) {
if (document.images) {
ImgNum = ImgNum + direction;
if (ImgNum > ImgLength) {
ImgNum = 0;
}
if (ImgNum < 0) {
ImgNum = ImgLength;
}
document.slideshow.src = NewImg[ImgNum];
if (document.getElementById) document.getElementById("CaptionBox").innerHTML = Caption[ImgNum];
   }
}
function auto() {
if (lock == true) {
lock = false;
window.clearInterval(run);
}
else if (lock == false) {
lock = true;
run = setInterval("chgImg(1)", delay);
   }
}


//  End -->
