// display previous & next watch names in watch index page
function showWatchName()
{
    if (root = $('model-link-nav')) {
        var anchors = root.getElementsByTagName('A');
        for (i=0;i<anchors.length;i++) {
            var showWatchNameObj = new ShowWatchNameObj(anchors[i]);
        }
    }
}
onloadHandlers[onloadHandlers.length] = 'showWatchName()';

function ShowWatchNameObj(thisNode)
{
    this.obj = thisNode;
    this.obj.onmouseover = function()  {
        if (node = document.getElementById('model-link-name'))
            node.innerHTML = this.innerHTML;
    }
    this.obj.onmouseout = function() {
        if (node = document.getElementById('model-link-name')) {
            node.innerHTML = '';
        }
    }
}