<!-- Original:  indianmasterpainters.com  -->
<!-- Web Site:  http://www.indianmasterpainters.com -->


<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 3000;
// Duration of crossfade (seconds)
var crossFadeDuration = 10;
// Specify the image files
var Picture = new Array();
// to add more images, just continue
// the pattern, adding to the array below
Picture[0] = 'ad/1.jpg'
Picture[1] = 'ad/2.jpg'
Picture[2] = 'ad/3.jpg'



// do not edit anything below this line
var t;
var j = 0;
var pl = Picture.length;
var preLoad = new Array();
for (i = 0; i < pl; i++) {
preLoad[i] = new Image();
preLoad[i].src = Picture[i];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (pl- 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
// 
