


MainVar = 0; // Sets up the variable that counts the pictures.

function Fix(DatVal, PicVal, TitVal, CatVal, TxtVal) { // Allows you to use variables for the array instead of numbers.
   this.DatVal = DatVal 
   this.PicVal = PicVal 
   this.TitVal = TitVal 
   this.CatVal = CatVal
   this.TxtVal = CatVal
   
} 
var MainArray = new Array() // Sets up the main array.

// Now add one line for each picture you want in the album.  The format of these lines is shown below:
// MainArray[MainVar++] = new Fix( "date", "picname.jpg", "pic title", "category", "pic description")
MainArray[MainVar++] = new Fix("29/7/2004", "images/p-animalhouse.jpg", "Animal House", "Animal House of MAMC")
MainArray[MainVar++] = new Fix("29/7/2004", "images/p-auditorium.jpg", "Auditorium", "Auditorium of Maulana Azad Medical College")
MainArray[MainVar++] = new Fix("29/7/2004", "images/p-bank.jpg", "Bank", "Syndicate Bank")
MainArray[MainVar++] = new Fix("29/7/2004", "images/p-campus.jpg", "Campus", "Campus of MAMC")
MainArray[MainVar++] = new Fix("29/7/2004", "images/p-canteen.jpg", "Canteen", "Canteen of MAMC")
MainArray[MainVar++] = new Fix("29/7/2004", "images/p-collegeblock.jpg", "College Block ", "Main Building of Maulana Azad Medical College")
MainArray[MainVar++] = new Fix("29/7/2004", "images/p-deanoff.jpg", "Dean's Office", "Office of the Dean of MAMC")
MainArray[MainVar++] = new Fix("29/7/2004", "images/p-dentalcol.jpg", "Dental College", "Dental College of MAMC")
MainArray[MainVar++] = new Fix("29/7/2004", "images/p-entrance.jpg", "Entrance", "College Entrance of MAMC")
MainArray[MainVar++] = new Fix("29/7/2004", "images/p-gbpant.jpg", "G.B.Pant Hospital", "G.B.Pant Hospital")
MainArray[MainVar++] = new Fix("29/7/2004", "images/p-girlshostel.jpg", "Girls Hostel", "New girls Hostel of MAMC")
MainArray[MainVar++] = new Fix("29/7/2004", "images/p-guesthouse.jpg", "Guest House", "Guest House of MAMC")
MainArray[MainVar++] = new Fix("29/7/2004", "images/p-hostresi.jpg", "Hostel Residents", "Hostel Residents of MAMC")
MainArray[MainVar++] = new Fix("29/7/2004", "images/p-lab.jpg", "Laboratory", "Lab of MAMC")
MainArray[MainVar++] = new Fix("29/7/2004", "images/p-library.jpg", "Library", "Library of MAMC")
MainArray[MainVar++] = new Fix("29/7/2004", "images/p-swim.jpg", "Swimming Pool", "Swimming Pool of MAMC")
MainArray[MainVar++] = new Fix("22/10/2004", "images/hostel-night1.jpg", "Hostel Night", "Hostel Night of MAMC")
MainArray[MainVar++] = new Fix("22/10/2004", "images/hostel-night2.jpg", "Hostel Night", "Hostel Night of MAMC")
MainArray[MainVar++] = new Fix("22/10/2004", "images/hostel-night3.jpg", "Hostel Night", "Hostel Night of MAMC")
MainArray[MainVar++] = new Fix("22/10/2004", "images/hostel-night4.jpg", "Hostel Night", "Hostel Night of MAMC")
MainArray[MainVar++] = new Fix("22/10/2004", "images/hostel-night5.jpg", "Hostel Night", "Hostel Night of MAMC")
MainArray[MainVar++] = new Fix("22/10/2004", "images/hostel-night6.jpg", "Hostel Night", "Hostel Night of MAMC")
MainArray[MainVar++] = new Fix("22/10/2004", "images/hostel-night7.jpg", "Hostel Night", "Hostel Night of MAMC")




