
//set image information (change to seq. nos later for prog. load)
src = ["Photos/Jpeg/Cert3_NargisDutt_sml.jpg","Photos/Gallery/Legends/Nargisji4.jpg", 
"Photos/Gallery/Legends/Sunil_Dutt1.jpg",  "Photos/Gallery/Legends/Sunil_Dutt2.jpg", "Photos/Gallery/Legends/Sunil_Dutt3.jpg", "Photos/Gallery/Legends/Sunil_Dutt4.jpg", "Photos/Gallery/Legends/Sunil_Dutt5.jpg", "Photos/Gallery/Legends/Sunil_Dutt6.jpg", "Photos/Gallery/Legends/Rajendrakumarji1.jpg", "Photos/Gallery/Legends/Rajendrakumarji2.jpg"]

// "Photos/Gallery/Legends/Maya_Sen2.jpg",  add more photos, etc

//set corresponding url
url = ["http://www.mitakundu.com"]  


ads=[]; ct=0;
delay=3.5*1000;

function loaded(){
location.href = url; 
} onload = function(){
if 
(document.images)
NextSlide();
}

function slideshow(a) {
if(a) delay=1*1000;
else delay=1000*1000;
}

function NextSlide(){
//else delay=1000*1000;
var n=(ct+1)%src.length;
if (ads[n] && (ads[n].complete || ads[n].complete==null)) {
document["Image"].src = ads[ct=n].src;
}
ads[n=(ct+1)%src.length] = new Image;
ads[n].src = src[n];
setTimeout("NextSlide()",delay);
}
//
