// LastUpdated: By moving this function here, the date will update on your web page whenever you add images.
function LastUpdated() {
	document.write("This album currently has  " + MainVar + "  photos and was last modified on  " + document.lastModified +".");
}

// SuzyCategory:  Add your new category names.  Be sure to leave in the 'all' category!
SuzyCategory = new Array("all", "MyVillege")

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 = TxtVal 
} 
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("11/10/2006", "1.jpg", "Villege Photo 1", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "2.jpg", "Villege Photo 2", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "3.jpg", "Villege Photo 3", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "4.jpg", "Villege Photo 4", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "5.jpg", "Villege Photo 5", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "6.jpg", "Villege Photo 6", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "7.jpg", "Villege Photo 7", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "8.jpg", "Villege Photo 8", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "9.jpg", "Villege Photo 9", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "10.jpg", "Villege Photo 10", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "11.jpg", "Villege Photo 11", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "12.jpg", "Villege Photo 12", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "13.jpg", "Villege Photo 13", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "14.jpg", "Villege Photo 14", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "15.jpg", "Villege Photo 15", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "16.jpg", "Villege Photo 16", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "17.jpg", "Villege Photo 17", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "18.jpg", "Villege Photo 18", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "19.jpg", "Villege Photo 19", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")
MainArray[MainVar++] = new Fix("11/10/2006", "20.jpg", "Villege Photo 20", "MyVillege", "Big Picture -  Click on the image to see big picture in new window.  Wallpaper - Right click on the image and select 'set as Background' option")


