<!-- 
var cityfade = 5000;  // Set cityfade (milliseconds)
var cityfadeduration = 3; // Duration of crossfade (seconds)
var newValleys = new Array ('/images_1/imports/p1.jpg' , '/images_1/imports/p3.jpg' , '/images_1/imports/p4.jpg' , '/images_1/imports/p5.jpg' , '/images_1/imports/p6.jpg');   // Specify the image files
var c;
var J = 0;
var P = newValleys.length;
var preLoadcity = new Array();
for (I = 0; I < P; I++) {
preLoadcity[I] = new Image();
preLoadcity[I].src = newValleys[I];
}
function FadeImgs() {
if (document.all) {
document.mainbanner.style.filter="blendTrans(duration=2)";
document.mainbanner.style.filter="blendTrans(duration=cityfadeduration)";
document.mainbanner.filters.blendTrans.Apply();
}
document.mainbanner.src = preLoadcity[J].src;
if (document.all) {
document.mainbanner.filters.blendTrans.Play();
}
J = J + 1;
if (J > (P - 1)) J = 0;
c = setTimeout('FadeImgs()', cityfade);
}

function doBannerAction() {
 if (flash4 == "no") {
  FadeImgs();
 }
}
//-->
