function setTooltip(str) {
    var obj;
    if (false && document.all) {
      obj = document.all["tooltip"];
    } else if (true && document.getElementById) {
      obj = document.getElementById("tooltip");
    }
    obj.innerHTML = str;
}
var tooltips = new Array();
tooltips["news"] = "get the latest news on kano and on other stuff";
tooltips["users"] = "view screenshots of kano in action and out of action, as well as a bunch of praisey quotes";
tooltips["features"] = "look at all of the wonderful things kanotcl can do";
tooltips["board"] = "talk to other people who might use or hate kano, either the ircscript or the person";
tooltips["themes"] = "look at all the themes you can use for kano. mostly for people who haven't used it yet, because you have all the themes in your kano dir.";
tooltips["addons"] = "download a bunch of wicked super awesome addon plugin things for kanotcl!!!";
tooltips["help"] = "get outdated and obsolete help for probably nonexistent kano functions";
tooltips["download"] = "download the wonderful wonderment that is kano.tcl!";

function hover(s) {
    setTooltip('<TD ALIGN=CENTER><font face="Verdana,Helvetica,Arial" size="-2">' + tooltips[s] + "</font></TD>");
}

function unhover() {
    setTooltip("");
    return;
    setTooltip('<td><A HREF="http://www.cs.washington.edu/homes/klee/misc/slashdot.html"><img src="/kanotcl/images/qst.gif" style="margin-right:20px;" width="88" height="31" hspace="0" vspace="0" border="0" alt="QUIT SLASHDOT TODAY"></a></td>'
    + '<td><font face="Verdana,Helvetica,Arial" size="-2">maybe still the<br>most widely used script<br>for <a href="http://www.xircon.com/" target=xircon>xircon</a></td>'
    + '<td><a target=xircon href=http://www.xircon.com/><img src="/kanotcl/images/xircon2.gif" align="middle" border="0"></a></font></td>');
}




