//Gallery.js -- Javascript extensions for Van's Art Gallery.
//Copyright C2005-2006 by Van Wanless
//

function handleArrowOver(name) { 
    var t = document.getElementById("DIRECTIONBAR");
    t.rows[0].cells[2].innerHTML = "<small>" + name + "</small>";
}

function handleArrowOut() { 
    var t = document.getElementById("DIRECTIONBAR");
    t.rows[0].cells[2].innerHTML = " ";
}

function handleCopyrightOver() { 
    var t = document.getElementById("COPYRIGHT");
    t.rows[0].cells[0].innerHTML = "Copyright &copy;1995-2009 by Van Wanless<br>"
                                 + "Images and text may be downloaded for personal use, and "
                                 + "freely copied and passed on to others for the same purpose. "
                                 + "Commercial use of any portion of this page without "
                                 + "the express permission of the owner is forbidden.";
}

function hilitetitle(id) {
    var t = document.getElementById(id);
    t.className = "hilitetitle";
}

function lolitetitle(id) {
    var t = document.getElementById(id);
    t.className = "title";
}


