
<!--

/*
Cool Table Menu
By Clarence Eldefors (http://www.freebox.com/cereweb) with modifications from javascriptkit.com
Visit http://javascriptkit.com for this and over 400+ other scripts
*/


//preload background
image1 = new Image();
image1.src = "b.jpg";

image2 = new Image();
image2.src = "a.jpg";

//remove background flicker
try {

document.execCommand("BackgroundImageCache", false, true);

} catch(err) {}


function movein(which,html){
which.style.background='url(b.jpg)'
if (document.getElementById)
document.getElementById("boxdescription").innerHTML=html
else
boxdescription.innerHTML=html
}

function moveout(which){
which.style.background='url(a.jpg)'
if (document.getElementById)
document.getElementById("boxdescription").innerHTML='&nbsp;'
else
boxdescription.innerHTML='&nbsp;'
}

//-->

