// PUT THE URL'S OF YOUR IMAGES INTO THIS ARRAY...

var Slides = new Array(
                                                '/media/campus-tour/tourpics/mcmahon-center.jpg',
                                                '/media/campus-tour/tourpics/mcmahon-library.jpg',
                                                '/media/campus-tour/tourpics/great-room.jpg',
                                                '/media/campus-tour/tourpics/village-bed.jpg',
                                                '/media/campus-tour/tourpics/Science-complex.jpg', 
                                                '/media/campus-tour/tourpics/spring-flowers.jpg', 
                                                '/media/campus-tour/tourpics/theatre-shot.jpg',
                                                '/media/campus-tour/tourpics/cetes-outside.jpg',
                                                '/media/campus-tour/tourpics/cetes-hall.jpg',
                                                '/media/campus-tour/tourpics/fitness-center.jpg',
                                                '/media/campus-tour/tourpics/brick-path.jpg',
                                                '/media/campus-tour/tourpics/bentley-gardens',
                                                '/media/campus-tour/tourpics/bentley-gardens-students',
                                                '/media/campus-tour/tourpics/bentley-gardens-robinson',
                                                '/media/campus-tour/tourpics/business-building-exterior',
                                                '/media/campus-tour/tourpics/business-building-lobby',
                                                '/media/campus-tour/tourpics/business-building-ticker',
                                                '/media/campus-tour/tourpics/graybill-courtyard',
                                                '/media/campus-tour/tourpics/graybill-courtyard-class',
                                                '/media/campus-tour/tourpics/mcc',
                                                '/media/campus-tour/tourpics/mcc-game-room',
                                                '/media/campus-tour/tourpics/mcc-students',
                                                '/media/campus-tour/tourpics/mcc-students-2',
                                                '/media/campus-tour/tourpics/mcc-balcony'
                                          );

var Titles = new Array(
								'McMahon Center',
								'McMahon Library',
								'Great Room',
								'Cameron Village',
								'Sciences Complex',
								'Campus Landscape',
								'Theatre',
								'Center for Emerging Technology and Entrepreneurial Studies',
								'Center for Emerging Technology and Entrepreneurial Studies',
								'Fitness Center',
								'Campus Landscape',
                                                'Bentley Gardens',
                                                'Bentley Gardens',
                                                'Bentley Gardens',
                                                'Business Building',
                                                'Business Building',
                                                'Business Building',
                                                'Graybill Courtyard',
                                                'Graybill Courtyard',
                                                'McMahon Centennial Complex',
                                                'McMahon Centennial Complex',
                                                'McMahon Centennial Complex',
                                                'McMahon Centennial Complex',
                                                'McMahon Centennial Complex'
							)

var Copy = new Array(
								'The Cameron Village McMahon Center is the focal point of the Cameron Village living learning complex and the newest facility on campus.',
								'The McMahon Library is open 24 hours for students in the new Cameron Village apartment complex.',
								'The great room in McMahon Center is a prime location for studying, playing pool and watching TV.  The fireplace is also a favorite reading location during the winter.',
								'The Cameron Village apartment complex is a living learning community of student activity.  The two and four bedroom apartments provide privacy and comfort in college living.',
								'Our campus provides a safe and welcoming environment to live and learn.  These students visit in front of the Sciences Complex.',
								'Each spring the campus blooms with color.  The boardwalk in the heart of campus creates a peaceful walk as students travel across campus.',
								'These students rehearse the final scene in the play <I>Working</I> in the Cameron University Theatre.  Cameron plays are a favorite among students and the community.',
								'The Center for Emerging Technology and Entrepreneurial Studies is the University economic development initiative.  Students get hands on experience working with upcoming companies.',
								'The hallways of CETES provide home to a variety of classrooms and conference rooms in addition to the Multimedia Design Department.',
								'The Cameron fitness center provides the latest in exercise and recreations amenities.  From an indoor pool, racquetball and basketball courts to weight lifting and aerobic equipment, it has it all.',
								'Campus is filled with beautiful landscaping and walkways to provide a welcoming and comforting environment for students and guests.',
                                                'The Bentley Gardens, located in the heart of the Cameron campus, feature a serene outdoor space with walking trails, water features, a gazebo and benches.',
                                                'The gazebo in the Bentley Gardens is a popular gathering place for students.',
                                                'Faculty members and students take advantage of the Bentley Gardens for impromptu outdoor classes.',
                                                'The Cameron state-of-the-art Business Building opened in Fall 2009.',
                                                'The reception area in the Business Building offers comfort and relaxation for students, faculty and visitors.',
                                                'The technology-rich Business Building features a stock ticker that finance students utilize for classwork.',
                                                'The Charles S. Graybill, MD, Courtyard offers an oasis for outdoor study and social gatherings.',
                                                'Faculty members are known to hold class in the Graybill gazebo.',
                                                'The McMahon Centennial Complex (MCC) is a lavish student activities center for Cameron. The structure includes the McCasland Ballroom, available for community events, meeting rooms, staff offices, a food court, game room, student lounge and an art gallery.',
                                                'The MCC features a game area that contains pool tables and ping pong tables.',
                                                'A student lounge in the MCC provides a respite from class.',
                                                'The MCC food court is a popular hangout that features pizza, sub sandwiches, a grill and a coffee bar.',
                                                'The balcony on the MCC, adjacent to the McCasland Ballroom, overlooks the Bentley Gardens.'
							)
							

// DO NOT EDIT BELOW THIS LINE!
function CacheImage(ImageSource) { // TURNS THE STRING INTO AN IMAGE OBJECT
   var ImageObject = new Image();
   ImageObject.src = ImageSource;
   return ImageObject;
}

function ShowSlide(Direction) {
   if (SlideReady) {
      NextSlide = CurrentSlide + Direction;
      // THIS WILL DISABLE THE BUTTONS (IE-ONLY)
      //document.SlideShow.Previous.disabled = (NextSlide == 0);
      //document.SlideShow.Next.disabled = (NextSlide == (Slides.length-1));    
 if ((NextSlide >= 0) && (NextSlide < Slides.length)) {
            document.images['Screen'].src = Slides[NextSlide].src;
            CurrentSlide = NextSlide++;
            Message = 'Picture ' + (CurrentSlide+1) + ' of ' + Slides.length;
			tour_caption_title.innerHTML = Titles[CurrentSlide];
			tour_caption_copy.innerHTML = Copy[CurrentSlide];
            self.defaultStatus = Message;
            if (Direction == 1) CacheNextSlide();
      }
      return true;
   }
}

function Download() {
   if (Slides[NextSlide].complete) {
      SlideReady = true;
      self.defaultStatus = Message;
   }
   else setTimeout("Download()", 100); // CHECKS DOWNLOAD STATUS EVERY 100 MS
   return true;
}

function CacheNextSlide() {
   if ((NextSlide < Slides.length) && (typeof Slides[NextSlide] == 'string'))
{ // ONLY CACHES THE IMAGES ONCE
      SlideReady = false;
      self.defaultStatus = 'Downloading next picture...';
      Slides[NextSlide] = CacheImage(Slides[NextSlide]);
      Download();
   }
   return true;
}

function StartSlideShow() {
   CurrentSlide = -1;
   Slides[0] = CacheImage(Slides[0]);
   SlideReady = true;
   ShowSlide(1);
}

