﻿// JScript File

function overclass(tdid,image)
{
	
 document.getElementById(tdid).style.backgroundImage="url('"+image+"')";;
 document.getElementById(tdid).className="menubartext";
 return false;
}


function outclass(tdid,image)
{
 document.getElementById(tdid).className="menubartextout";
 document.getElementById(tdid).style.backgroundImage="url('"+image+"')";
 return false;
}

