var AboutSpeed = 8000;
var AboutFade = 4;
var About = new Array();

About[0] = 'images/parts.jpg'
About[1] = 'images/slogan_about_us.gif'

var w;
var m = 0;
var p = About.length;
var AboutLoad = new Array();
for (a = 0; a < p; a++) {
AboutLoad[a] = new Image();
AboutLoad[a].src = About[a];
}
function runAbout() {
if (document.all) {
document.images.about.style.filter="blendTrans(duration=4)";
document.images.about.style.filter="blendTrans(duration=AboutFade)";
document.images.about.filters.blendTrans.Apply();
}
document.images.about.src = AboutLoad[m].src;
if (document.all) {
document.images.about.filters.blendTrans.Play();
}
m = m + 1;
if (m > (p - 1)) m = 0;
w = setTimeout('runAbout()', AboutSpeed);
}

