var ContactSpeed = 3000;
var ContactFade = 3;
var Con = new Array();

Con[0] = 'images/19.jpg'
Con[1] = 'images/22.jpg'
Con[2] = 'images/6.jpg'

var u;
var k = 0;
var p = Con.length;
var ConLoad = new Array();
for (i = 0; i < p; i++) {
ConLoad[i] = new Image();
ConLoad[i].src = Con[i];
}
function runContact() {
if (document.all) {
document.images.Contact.style.filter="blendTrans(duration=3)";
document.images.Contact.style.filter="blendTrans(duration=ContactFade)";
document.images.Contact.filters.blendTrans.Apply();
}
document.images.Contact.src = ConLoad[k].src;
if (document.all) {
document.images.Contact.filters.blendTrans.Play();
}
k = k + 1;
if (k > (p - 1)) k = 0;
u = setTimeout('runContact()', ContactSpeed);
}


