var Picture = new Array(); // don't change this
var showHot = false;       // don't change this

// Specify the image files...
// To add more images, just continue
// the pattern, adding to the array below.
// To use fewer images, remove lines
// starting at the end of the Picture array.
// Caution: The number of Pictures *must*
// equal the number of Captions!

Picture[1]  = "images/weddings/weddings01.jpg";
Picture[2]  = "images/weddings/weddings02.jpg";
Picture[3]  = "images/weddings/weddings03.jpg";
Picture[4]  = "images/weddings/weddings04.jpg";
Picture[5]  = "images/weddings/weddings05.jpg";
Picture[6]  = "images/weddings/weddings06.jpg";
Picture[7]  = "images/weddings/weddings07.jpg";
Picture[8]  = "images/weddings/weddings08.jpg";
Picture[9]  = "images/weddings/weddings09.jpg";
Picture[10] = "images/weddings/weddings10.jpg";
Picture[11] = "images/weddings/weddings11.jpg";
Picture[12] = "images/weddings/weddings12.jpg";
Picture[13] = "images/weddings/weddings13.jpg";
Picture[14] = "images/weddings/weddings14.jpg";
Picture[15] = "images/weddings/weddings15.jpg";
Picture[16] = "images/weddings/weddings16.jpg";
Picture[17] = "images/weddings/weddings17.jpg";
Picture[18] = "images/weddings/weddings18.jpg";
Picture[19] = "images/weddings/weddings19.jpg";
Picture[20] = "images/weddings/weddings20.jpg";
Picture[21] = "images/weddings/weddings21.jpg";
Picture[22] = "images/weddings/weddings22.jpg";
Picture[23] = "images/weddings/weddings23.jpg";
Picture[24] = "images/weddings/weddings24.jpg";
Picture[25] = "images/weddings/weddings25.jpg";
Picture[26] = "images/weddings/weddings26.jpg";
Picture[27] = "images/weddings/weddings27.jpg";
Picture[28] = "images/weddings/weddings28.jpg";
Picture[29] = "images/weddings/weddings29.jpg";
Picture[30] = "images/weddings/weddings30.jpg";
Picture[31] = "images/weddings/weddings31.jpg";
Picture[32] = "images/weddings/weddings32.jpg";
Picture[33] = "images/weddings/weddings33.jpg";
Picture[34] = "images/weddings/weddings34.jpg";
Picture[35] = "images/weddings/weddings35.jpg";
Picture[36] = "images/weddings/weddings36.jpg";
Picture[37] = "images/weddings/weddings37.jpg";
Picture[38] = "images/weddings/weddings38.jpg";
Picture[39] = "images/weddings/weddings39.jpg";
Picture[40] = "images/weddings/weddings40.jpg";
Picture[41] = "images/weddings/weddings41.jpg";
Picture[42] = "images/weddings/weddings42.jpg";
Picture[43] = "images/weddings/weddings43.jpg";



// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var iss;
var jss = 0;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function control(how){
if (showHot){
if (how=="home") jss = 1;
if (how=="next") jss = jss + 1;
if (how=="prev") jss = jss - 1;
if (jss > (pss)) jss = pss;
if (jss < 1) jss = 1;
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
}}
