
//Please Do'nt Touch Java Script Coading, First Of All Concern with Ratender Saini //

window.onload=hello;
function hello()
{
	runSlideShow1();
    
}


var SlideShowSpeed1 = 4000;
// Set the duration of crossfade (in seconds)
var CrossFadeDuration1 = 3;
var Picture1 = new Array(); // don't change this
var Caption1 = new Array(); // don't change this
Picture1[1] = 'images/flah1.png';
Picture1[2] = 'images/flah2.png';
Picture1[3] = 'images/flah3.png';
Picture1[4] = 'images/flah4.png';



var tss1;
var iss1;
var jss1 = 1;
var pss1 = Picture1.length-1;

var preLoad1 = new Array();
for (iss1 = 1; iss1 < pss1+1; iss1++){
preLoad1[iss1] = new Image();
preLoad1[iss1].src = Picture1[iss1];}

function runSlideShow1(){
if (document.images){
document.images.PictureBox1.style.filter="blendTrans(duration=2)";
document.images.PictureBox1.style.filter="blendTrans(duration=CrossFadeDuration1)";
document.images.PictureBox1.filters.blendTrans.Apply();}
document.images.PictureBox1.src = preLoad1[jss1].src;

if (document.all) 
document.images.PictureBox1.filters.blendTrans.Play();
jss1 = jss1 + 1;
if (jss1 > (pss1)) jss1=1;
tss1 = setTimeout('runSlideShow1()', SlideShowSpeed1);
}


