<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000;
// Duration of crossfade (seconds)
var crossFadeDuration = 0;
// Specify the image files
var Picbg = new Array();				// for bg
// to add more images, just continue
// the pattern, adding to the array below
Picbg[0] = 'http://imghost1.indiamart.com/data2/LF/YU/MY-1077940/home-banner1.jpg'
Picbg[1] = 'http://imghost1.indiamart.com/data2/VE/TN/MY-1077940/home-banner2.jpg'
Picbg[2] = 'http://imghost1.indiamart.com/data2/NS/RY/MY-1077940/home-img2.jpg'
var t;
var j = 0;
var p = Picbg.length;
var preLoadBg = new Array();			// for bg
for (i = 0; i < p; i++) {
preLoadBg[i] = Picbg[i];				// for bg
}			
function runSlideShow() {
if (document.all) {
document.getElementById('bim').style.filter="revealTrans(duration=2)";						// for bg
document.getElementById('bim').style.filter="revealTrans(duration=2,transition=12)";		// for bg
document.getElementById('bim').filters.revealTrans.Apply();						
}
document.getElementById('bim').style.background="url("+preLoadBg[j]+") no-repeat";			
if (document.all) {
document.getElementById('bim').filters.revealTrans.Play();						
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
// 