var SlideShowSpeed = 6000;
var CrossFadeDuration = 6;

var Picture = new Array();
var Caption = new Array();
Picture[1] = 'http://satyar.ir/gallery/images/slides/thumbs/1-2.jpg';
Caption[1] = '<a href=javascript:popUp("slides.htm")> سفر به مدینه، تیر ماه 1387 </a>';
Picture[2] = 'http://satyar.ir/gallery/images/slides/thumbs/2-2.jpg';
Caption[2] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[3] = 'http://satyar.ir/gallery/images/slides/thumbs/3-2.jpg';
Caption[3] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[4] = 'http://satyar.ir/gallery/images/slides/thumbs/4-2.jpg';
Caption[4] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[5] = 'http://satyar.ir/gallery/images/slides/thumbs/5-2.jpg';
Caption[5] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[6] = 'http://satyar.ir/gallery/images/slides/thumbs/6-2.jpg';
Caption[6] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[7] = 'http://satyar.ir/gallery/images/slides/thumbs/7-2.jpg';
Caption[7] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[8] = 'http://satyar.ir/gallery/images/slides/thumbs/8-2.jpg';
Caption[8] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[9] = 'http://satyar.ir/gallery/images/slides/thumbs/9-2.jpg';
Caption[9] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[10] = 'http://satyar.ir/gallery/images/slides/thumbs/10-2.jpg';
Caption[10] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[11] = 'http://satyar.ir/gallery/images/slides/thumbs/11-2.jpg';
Caption[11] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[12] = 'http://satyar.ir/gallery/images/slides/thumbs/12-2.jpg';
Caption[12] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[13] = 'http://satyar.ir/gallery/images/slides/thumbs/13-2.jpg';
Caption[13] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[14] = 'http://satyar.ir/gallery/images/slides/thumbs/14-2.jpg';
Caption[14] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[15] = 'http://satyar.ir/gallery/images/slides/thumbs/15-2.jpg';
Caption[15] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[16] = 'http://satyar.ir/gallery/images/slides/thumbs/16-2.jpg';
Caption[16] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[17] = 'http://satyar.ir/gallery/images/slides/thumbs/17-2.jpg';
Caption[17] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[18] = 'http://satyar.ir/gallery/images/slides/thumbs/18-2.jpg';
Caption[18] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[19] = 'http://satyar.ir/gallery/images/slides/thumbs/19-2.jpg';
Caption[19] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[20] = 'http://satyar.ir/gallery/images/slides/thumbs/20-2.jpg';
Caption[20] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[21] = 'http://satyar.ir/gallery/images/slides/thumbs/21-2.jpg';
Caption[21] = '<a href=javascript:popUp("slides.htm")>  </a>';
Picture[22] = 'http://satyar.ir/gallery/images/slides/thumbs/25-2.jpg';
Caption[22] = '<a href=javascript:popUp("slides.htm")>  </a>';


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);
}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=1,statusbar=0,menubar=0,resizable=0,width=500,height=500,left = 2,top = 2');");
}