/*
	Cool Table Menu
By Clarence Eldefors (http://www.freebox.com/cereweb) with modifications from javascriptkit.com and busgrrrl
Visit http://javascriptkit.com for this and over 400+ other scripts
*/

function movein(which,html)
{
which.style.background='#a73232'
if (document.getElementById)
    document.getElementById("boxdescription").innerHTML=html
    else
	boxdescription.innerHTML=html
}

function moveout(which)
{
	which.style.background='#d9d2ff'
	if (document.getElementById)
		document.getElementById("boxdescription").innerHTML='&nbsp;'
	else
	boxdescription.innerHTML='&nbsp;'
}
