//----------------------------------------
// NAME OF SCRIPT:  ELECTRIC SLIDE v1.2   |
// AUTHOR        :  Carolyn Brown Ray     |
// CREATED       :  October 25, 2005      |
// LAST MODIFIED :  January 29, 2007      |
// FILENAME      :  slideShowItems.js     |
//--------------------------------------------------------------------
// DESCRIPTION:
// Multi-category slideshow allows each image its own caption, url link,
// alt text. Can be placed horizontally or vertically according to
// configuration. Images can be changed manually or set to change
// automatically according to number of seconds elapsed.
//
// CONFIGURATION OPTIONS:
// caption: font family, size & color:  setFontStyle()
// each category:  initSlideShow.setSize(imageWidth, imageHeight,
//                                    captionWidth, captionHeight)
// each image:  image src, href link, alt text, caption text,
//              slideShowItems.new Slide()
// orientation:  setHorizontal(boolean)
// order: setCaptionFirst(boolean)
// # spacing between image & caption: initSlideShow.setSpacing
//--------------------------------------------------------------------
// SUMMARY:
// Images are divided into categories. Each category is placed
// column-wise, from left to right, OR by row, up to down.
// Images are loaded at a random point in each category.
// When a user mouses over an image, the image's caption is displayed.
// On mouse-out, the caption disappears
// When a user clicks the image, the user is taken to the specific URL
// for that image.
// When the user clicks "Change Image" such that that switchImage()
// function is called, the next image for each category is displayed.
// Slideshow can be configured so that images change automatically.
// The appropriate captions and URL links are also available.
// --------------------------------------------------------------------

//----------------------------------------
//SLIDE CATEGORY ARRAY:
//MAINTENANCE: modify and/or add category names here
//----------------------------------------

  var categoryArray = new Array (
				  "student"
				 ,"campus"
				 ,"culture"
			        );


   for (var j=0; j < categoryArray.length; j++) {
	eval("var " + categoryArray[j] + "CaptionArray = new Array();");
    }
//----------------------------------------
  function getCategories() {
   return categoryArray;
  }
    

   function initSlideArrays() {

    //Usage:
    //addSlide(CATEGORY, SRC, HREF, ALT_TEXT, CAPTION)

      //Start Slides in student Category 
      addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/1.jpg"
     , "http://www.muhlenberg.edu/students/CampusLife/"
     , "Student Life and Athletics"
     , "");
	  addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/sports/1.jpg"
     , "http://www.muhlenberg.edu/sports/"
     , "Student Life and Athletics"
     , "");
	  addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/2.jpg"
     , "http://www.muhlenberg.edu/students/CampusLife/"
     , "Student Life and Athletics"
     , "");
	  addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/3.jpg"
     , "http://www.muhlenberg.edu/students/CampusLife/"
     , "Student Life and Athletics"
     , "");
	  addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/sports/2.jpg"
     , "http://www.muhlenberg.edu/sports/"
     , "Student Life and Athletics"
     , "");
	  addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/4.jpg"
     , "http://www.muhlenberg.edu/students/CampusLife/"
     , "Student Life and Athletics"
     , "");
	  addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/5.jpg"
     , "http://www.muhlenberg.edu/students/CampusLife/"
     , "Student Life and Athletics"
     , "");
	  addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/sports/3.jpg"
     , "http://www.muhlenberg.edu/sports/"
     , "Student Life and Athletics"
     , "");
      addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/6.jpg"
     , "http://www.muhlenberg.edu/students/CampusLife/"
     , "Student Life and Athletics"
     , "");
	  addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/sports/4.jpg"
     , "http://www.muhlenberg.edu/sports/"
     , "Student Life and Athletics"
     , "");
	 addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/7.jpg"
     , "http://www.muhlenberg.edu/students/CampusLife/"
     , "Student Life and Athletics"
     , "");
	  addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/sports/5.jpg"
     , "http://www.muhlenberg.edu/sports/"
     , "Student Life and Athletics"
     , "");
	 addSlide (
       "student"
	 , "http://www.muhlenberg.edu/banner/2/8.jpg"
     , "http://www.muhlenberg.edu/students/CampusLife/"
     , "Student Life and Athletics"
     , "");
	 addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/9.jpg"
     , "http://www.muhlenberg.edu/admissions/"
     , "Student Life and Athletics"
     , "");
	addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/10.jpg"
     , "http://www.muhlenberg.edu/students/CampusLife/"
     , "Student Life and Athletics"
     , "");
	addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/sports/6.jpg"
     , "http://www.muhlenberg.edu/sports/"
     , "Student Life and Athletics"
     , "");
	addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/11.jpg"
     , "http://www.muhlenberg.edu/students/CampusLife/"
     , "Student Life and Athletics"
     , "");
	addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/12.jpg"
     , "http://www.muhlenberg.edu/students/CampusLife/"
     , "Student Life and Athletics"
     , "");
		 addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/sports/7.jpg"
     , "http://www.muhlenberg.edu/sports/"
     , "Student Life and Athletics"
     , "");
	addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/13.jpg"
     , "http://www.muhlenberg.edu/students/CampusLife/"
     , "Student Life and Athletics"
     , "");
	addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/14.jpg"
     , "http://www.muhlenberg.edu/students/CampusLife/"
     , "Student Life and Athletics"
     , "");
	addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/15.jpg"
     , "http://www.muhlenberg.edu/students/CampusLife/"
     , "Student Life and Athletics"
     , "");
		 addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/sports/8.jpg"
     , "http://www.muhlenberg.edu/sports/"
     , "Student Life and Athletics"
     , "");
    addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/16.jpg"
     , "http://www.muhlenberg.edu/students/CampusLife/"
     , "Student Life and Athletics"
     , "");
	addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/17.jpg"
     , "http://www.muhlenberg.edu/admissions/"
     , "Student Life and Athletics"
     , "");
	addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/sports/9.jpg"
     , "http://www.muhlenberg.edu/sports/"
     , "Student Life and Athletics"
     , "");
	addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/18.jpg"
     , "http://www.muhlenberg.edu/students/CampusLife/"
     , "Student Life and Athletics"
     , "");
	addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/19.jpg"
     , "http://www.muhlenberg.edu/students/CampusLife/"
     , "Student Life and Athletics"
     , "");
		addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/sports/10.jpg"
     , "http://www.muhlenberg.edu/sports/"
     , "Student Life and Athletics"
     , "");
	addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/20.jpg"
     , "http://www.muhlenberg.edu/students/CampusLife/"
     , "Student Life and Athletics"
     , "");
	addSlide (
       "student"
     , "http://www.muhlenberg.edu/banner/2/21.jpg"
     , "http://www.muhlenberg.edu/studorgs/"
     , "Student Life and Athletics"
     , "");
		 //End Slides in student Category
		 //Start Slides in campus Category
	  addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/1.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The College sits on 91 acres in the picturesque west end of Allentown, overlooking Cedar Beach Park.");
	   addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/2.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The campus boasts a number of architectural gems.");
	   addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/3.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The campus boasts a number of architectural gems.");
		addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/4.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The Life Sports Center offers state-of-the-art weight training and cardio-vascular equipment.");
		addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/5.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "Scotty Wood Stadium and Frank Marino Field are home to a number of Mule athletic teams.");
		addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/6.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The Life Sports Center offers state-of-the-art weight training and cardio-vascular equipment.");
		addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/7.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The campus boasts a number of architectural gems.");
	addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/8.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The campus boasts a number of architectural gems.");
	addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/9.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The College sits on 91 acres in the picturesque west end of Allentown, overlooking Cedar Beach Park.");
	addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/10.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The Haas College Center's Miller Tower is one of the landmarks of the Lehigh Valley.");
		addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/11.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The new science building opened in the fall of 2006 with state-of-the-art labs and first class teaching spaces.");
	addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/12.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
    , "The new science building opened in the fall of 2006 with state-of-the-art labs and first class teaching spaces.");
	addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/13.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The College sits on 91 acres in the picturesque west end of Allentown, overlooking Cedar Beach Park.");
	addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/14.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The College opened its new Multicultural Center in the fall of 2006.");
	addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/15.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The campus boasts a number of architectural gems.");
	addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/16.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The campus boasts a number of architectural gems.");
	addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/17.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The new science building opened in the fall of 2006 with state-of-the-art labs and first class teaching spaces.");
	addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/18.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The Haas College Center is home to many of the administrative offices of the College.");
	addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/19.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The Haas College Center's Miller Tower is one of the landmarks of the Lehigh Valley.");
	addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/20.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The College sits on 91 acres in the picturesque west end of Allentown, overlooking Cedar Beach Park.");
	addSlide (
       "campus"
     , "http://www.muhlenberg.edu/banner/3/21.jpg"
     , "http://www.muhlenberg.edu/tour/"
     , "Campus Photos"
     , "The College sits on 91 acres in the picturesque west end of Allentown, overlooking Cedar Beach Park.");
	  //End Slides in campus Category
	  //Start Slides in culture category
      addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/1.jpg"
     , "http://www.muhlenberg.edu/depts/"
     , "Cultural Life & Academics"
     , "Students find a caring community and a rigorous academic environment.");
      addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/2.jpg"
     , "http://www.muhlenberg.edu/cultural/multicultural/"
     , "Cultural Life & Academics"
     , "The College has a wide range of social and multi-cultural activities on campus.");
	  addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/3.jpg"
     , "http://www.muhlenberg.edu/depts/"
     , "Cultural Life & Academics"
     , "There are opportunities for hands-on research experience in nearly every discipline.");
	  addSlide (
       "culture"
     , "banner/4/4.jpg"
     , "http://www.muhlenberg.edu/cultural/magic/"
     , "Cultural Life & Academics"
     , "Muhlenberg is the home of the nationally recognized Theory and Art of Magic series.");
	   addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/theatre/1.jpg"
     , "http://www.muhlenberg.edu/depts/theatre/"
     , "Cultural Life & Academics"
     , "The College has superb theatre, dance, music and art facilities.");
	   addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/5.jpg"
     , "http://www.muhlenberg.edu/depts/"
     , "Cultural Life & Academics"
     , "The College has a Phi Beta Kappa chapter and students also receive numerous post-graduate honors.");
	   addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/6.jpg"
     , "http://www.muhlenberg.edu/mgt/presoff/"
     , "Cultural Life & Academics"
     , "President Helm and a great number of faculty and staff attend student events and programs.");
	   addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/7.jpg"
     , "http://www.muhlenberg.edu/cultural/multicultural/"
     , "Cultural Life & Academics"
     , "The College has a wide range of social and multi-cultural activities on campus.");
	   addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/8.jpg"
     , "http://www.muhlenberg.edu/depts/"
     , "Cultural Life & Academics"
     , "The College has a four year graduation rate of more than 80 percent.");
	   addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/9.jpg"
	 , "http://www.muhlenberg.edu/cultural/magic/"
     , "Cultural Life & Academics"
     , "Muhlenberg is the home of the nationally recognized Theory and Art of Magic series.");
	    addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/theatre/2.jpg"
     , "http://www.muhlenberg.edu/depts/theatre/"
     , "Cultural Life & Academics"
     , "The College has superb theatre, dance, music and art facilities.");
	   addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/10.jpg"
     , "http://www.muhlenberg.edu/depts/"
     , "Cultural Life & Academics"
     , "Students find a caring community and a rigorous academic environment.");
	   addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/11.jpg"
     , "http://www.muhlenberg.edu/mgt/deanst/"
     , "Cultural Life & Academics"
     , "Students find a caring community and a rigorous academic environment.");
	    addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/12.jpg"
     , "http://www.muhlenberg.edu/depts/"
     , "Cultural Life & Academics"
     , "The College has a Phi Beta Kappa chapter and students also receive numerous post-graduate honors.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/13.jpg"
     , "http://www.muhlenberg.edu/students/research/"
     , "Cultural Life & Academics"
     , "Student research is an important part of the Muhlenberg experience.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/14.jpg"
     , "http://www.muhlenberg.edu/depts/"
     , "Cultural Life & Academics"
     , "There are opportunities for hands-on research experience in nearly every discipline.");
		 addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/theatre/3.jpg"
     , "http://www.muhlenberg.edu/depts/theatre/"
     , "Cultural Life & Academics"
     , "The College has superb theatre, dance, music and art facilities.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/15.jpg"
     , "http://www.muhlenberg.edu/depts/"
     , "Cultural Life & Academics"
     , "There are opportunities for hands-on research experience in nearly every discipline.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/16.jpg"
     , "http://www.muhlenberg.edu/depts/"
     , "Cultural Life & Academics"
     , "The College has a Phi Beta Kappa chapter and students also receive numerous post-graduate honors.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/17.jpg"
     , "http://www.muhlenberg.edu/students/research/"
     , "Cultural Life & Academics"
     , "Student/faculty research collaboration is an important part of the Muhlenberg experience.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/18.jpg"
     , "http://www.muhlenberg.edu/students/research/"
     , "Cultural Life & Academics"
     , "There are opportunities for hands-on research experience in nearly every discipline.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/19.jpg"
     , "http://www.muhlenberg.edu/depts/"
     , "Cultural Life & Academics"
     , "The College has a Phi Beta Kappa chapter and students also receive numerous post-graduate honors.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/20.jpg"
     , "http://www.muhlenberg.edu/students/research/"
     , "Cultural Life & Academics"
     , "Student research is an important part of the Muhlenberg experience.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/21.jpg"
     , "http://www.muhlenberg.edu/students/research/"
     , "Cultural Life & Academics"
     , "There are opportunities for hands-on research experience in nearly every discipline.");
		 addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/theatre/4.jpg"
     , "http://www.muhlenberg.edu/depts/theatre/"
     , "Cultural Life & Academics"
     , "The College has superb theatre, dance, music and art facilities.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/22.jpg"
     , "http://www.muhlenberg.edu/students/research/"
     , "Cultural Life & Academics"
     , "Student/faculty research collaboration is an important part of the Muhlenberg experience.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/23.jpg"
     , "http://www.muhlenberg.edu/depts/"
     , "Cultural Life & Academics"
     , "The College has a Phi Beta Kappa chapter and students also receive numerous post-graduate honors.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/24.jpg"
     , "http://www.muhlenberg.edu/students/research/"
     , "Cultural Life & Academics"
     , "There are opportunities for hands-on research experience in nearly every discipline.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/25.jpg"
     , "http://www.muhlenberg.edu/depts/"
     , "Cultural Life & Academics"
     , "The College boasts an excellent faculty, which prides itself on outstanding, passionate teaching and first rate scholarship.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/26.jpg"
     , "http://www.muhlenberg.edu/students/research/"
     , "Cultural Life & Academics"
     , "There are opportunities for hands-on research experience in nearly every discipline.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/27.jpg"
     , "http://www.muhlenberg.edu/students/research/"
     , "Cultural Life & Academics"
     , "Student research is an important part of the Muhlenberg experience.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/28.jpg"
     , "http://www.muhlenberg.edu/studorgs/service/"
     , "Cultural Life & Academics"
     , "Students at Muhlenberg are involved in a wide variety of campus and community projects.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/29.jpg"
     , "http://www.muhlenberg.edu/studorgs/service/"
     , "Cultural Life & Academics"
     , "There are more than 100 student organizations on campus and the College hosts more than 300 lectures, concerts and performances each year.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/30.jpg"
     , "http://www.muhlenberg.edu/cultural/"
     , "Cultural Life & Academics"
     , "There are dozens of opportunities for musicians, vocalists and comedians to take the stage.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/31.jpg"
     , "http://www.muhlenberg.edu/students/research/"
     , "Cultural Life & Academics"
     , "Student/faculty research collaboration is an important part of the Muhlenberg experience.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/32.jpg"
     , "http://www.muhlenberg.edu/cultural/"
     , "Cultural Life & Academics"
     , "There are dozens of opportunities for performers to take the stage.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/33.jpg"
     , "http://www.muhlenberg.edu/cultural/"
     , "Cultural Life & Academics"
     , "There are more than 100 student organizations on campus and the College hosts more than 300 lectures, concerts and performances each year.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/34.jpg"
     , "http://www.muhlenberg.edu/admissions/"
     , "Cultural Life & Academics"
     , "Students find a caring community and a rigorous academic environment.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/35.jpg"
     , "http://www.muhlenberg.edu/cultural/multicultural/"
     , "Cultural Life & Academics"
     , "The College has a wide range of social and multi-cultural activities on campus.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/36.jpg"
     , "http://www.muhlenberg.edu/studorgs/"
     , "Cultural Life & Academics"
     , "There are more than 100 student organizations on campus and the College hosts more than 300 lectures, concerts and performances each year.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/37.jpg"
     , "http://www.muhlenberg.edu/depts/"
     , "Cultural Life & Academics"
     , "The College boasts an excellent faculty, which prides itself on outstanding, passionate teaching and first rate scholarship.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/38.jpg"
     , "http://www.muhlenberg.edu/depts/"
     , "Cultural Life & Academics"
     , "The College boasts an award winning, passionate faculty with an emphasis on active learning and personal advising.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/39.jpg"
     , "http://www.muhlenberg.edu/depts/"
     , "Cultural Life & Academics"
     , "The College boasts an excellent faculty, which prides itself on outstanding, passionate teaching and first rate scholarship.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/40.jpg"
     , "http://www.muhlenberg.edu/depts/"
     , "Cultural Life & Academics"
     , "The College boasts an award winning, passionate faculty with an emphasis on active learning and personal advising.");
		addSlide (
       "culture"
     , "http://www.muhlenberg.edu/banner/4/41.jpg"
     , "http://www.muhlenberg.edu/depts/"
     , "Cultural Life & Academics"
     , "The College boasts an excellent faculty, which prides itself on outstanding, passionate teaching and first rate scholarship.");
	  //End Slides in culture category
   }



//----------------------------------------
//SLIDE OBJECT DEFINITION
//----------------------------------------
  function slide (s, h, a ) {

       this.src=s;
       this.href=h;
       this.alt=a;
   //    this.caption=c;
    }

   var preloadPtr=0;

   function addSlide(category, src, href, alt, caption) {

          var captionPtr;
          cmd=category + "Array[" + category +  "Counter++] = " +
              "new slide(\"" + src + "\", \"" + href + "\", \"" + 
                             //alt + "\", \"" + caption + "\");";
                             alt + "\");";
          eval(cmd);
   	  preloadArray[preloadPtr++]=src;      
          addCaption(category, caption); 
   }

   function addCaption(category, caption){
	  eval("captionPtr=" + category + "CaptionArray.length;");
	  cmd= category + "CaptionArray[" + captionPtr + "] =\"" +
			  caption + "\";";
	  eval(cmd);
   }
