function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",40)
}

function low(which2){
clearInterval(highlighting)
which2.filters.alpha.opacity=50
}

function highlightit(cur2){
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=5
else if (window.highlighting)
clearInterval(highlighting)
}

function reapply(){
setTimeout("slideit()",2000)
return true
}

window.onerror=reapply;

var image1=new Image()
image1.src=basePath + "images/nav_store_info.gif"

var image2=new Image()
image2.src=basePath + "images/nav_welcome.gif"

var image3=new Image()
image3.src=basePath + "images/nav_the_selection.gif"

var image4=new Image()
image4.src=basePath + "images/nav_cellar_club.gif"

var image5=new Image()
image5.src=basePath + "images/nav_featured_selections.gif"

var image6=new Image()
image6.src=basePath + "images/nav_ask_the_staff.gif"

var image7=new Image()
image7.src=basePath + "images/nav_guest_book.gif"

var image8=new Image()
image8.src=basePath + "images/nav_lifestyle.gif"

var image9=new Image()
image9.src=basePath + "images/nav_home.gif"

var image10=new Image()
image10.src=basePath + "images/nav_privacy.gif"

var image11=new Image()
image11.src=basePath + "images/nav_directions.gif"

var image12=new Image()
image12.src=basePath + "images/nav_createdby.gif"

var number_of_images=12
//change speed below (in seconds)
var speed=3
var step=1
var whichimage=1
function slideit(){

if (!document.images)
return
if (document.all)
slide.filters.blendTrans.apply()

document.images.slide.src=eval("image"+step+".src")
document.getElementById("maintable").style.background = eval("image"+step+".src")

if (document.all)
slide.filters.blendTrans.play()
whichimage=step
if (step<number_of_images)
step++
else
step=1
if (document.all)
setTimeout("slideit()",speed*1000+3000)
else
setTimeout("slideit()",speed*1000)
}