<!--
//SlideShow with Captions and Cross-Fade
//-->

var SlideShowSpeed = 3000;
var CrossFadeDuration = 2;
var Picture = new Array();
var Caption = new Array();
Picture[1]  = 'images/indexpage/s1.jpg';
Picture[2]  = 'images/indexpage/s2.jpg';
Picture[3]  = 'images/indexpage/s3.jpg';
Picture[4]  = 'images/indexpage/s4.jpg';
Picture[5]  = 'images/indexpage/s5.jpg';
Picture[6]  = 'images/indexpage/s6.jpg';
Picture[7]  = 'images/indexpage/s7.jpg';
Picture[8]  = 'images/indexpage/s8.jpg';
Picture[9]  = 'images/indexpage/s9.jpg';
Picture[10] = 'images/indexpage/s10.jpg';
Picture[11] = 'images/indexpage/s11.jpg';
Picture[12] = 'images/indexpage/s12.jpg';
Picture[13] = 'images/indexpage/s13.jpg';
Caption[1]  =  "Nabami and Dashami pujas were celebrated on 3rd Oct Saturday from 9 AM - 4:30 PM at Datta Temple";
Caption[2]  = "BRBLA had celebrated Durga Puja on 2nd and 3rd October 2009";
Caption[3]  = "Durga Puja Dates: 2nd and 3rd October 2009 Venue: Datta Temple at Equity Drive, Baton Rouge";
Caption[4]  = "Contact 225-921-0739 for details";
Caption[5]  = "Nabami and Dashami pujas were celebrated on 3rd Oct Saturday from 9 AM - 4:30 PM at Datta Temple";
Caption[6]  = "Shasthi and Swaptami pujas were celebrated on 2nd Oct Friday from 6 PM - 10:30 PM at Datta Temple";
Caption[7]  = "Kali Puja was celebrated on Saturday 17th October 2009 at BREC Park";
Caption[8]  = "BRBLA new executive committee has taken over for 2010-11 events on 6th February 2010!  Good Luck !!";
Caption[9]  = "Stay tuned in to this site for more.... ";
Caption[10] = "Write to brbla.org, if you have any art work,photo-stories, interesting facts etc. for our site";
Caption[11] = "Contact 225-921-0739 for details";
Caption[12]  = "Welcome! All new members of BRBLA";
Caption[13]  = "Shasthi and Swaptami pujas were celebrated on 2nd Oct Friday from 6 PM - 10:30 PM at Datta Temple";

var tss;
var iss;
var jss = 1;
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 runSlideShow(){
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.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}
