<!--
var pref = ""
var d = 1;

if (lvl == 1) { pref = "../" }
if (lvl == 2) { pref = "../../" }
if (lvl == 3) { pref = "../../../" }

document.write('<img src="' + Img[d].src + '" name="slide" width="480" height="190" border="0" onClick="goToURL()">');
//variable that will increment through the images

function slideit(){
//if browser does not support the image object, exit.
if (!document.images)
return
document.images.slide.src = Img[d].src;
//alert(d+" "+b)
if ( d < b ){
d++
} else {
d = 1
}
//call function "slideit()" every 4 seconds
setTimeout( "slideit()",FeatD[d] )
}
slideit()
//-->
