<!--
/*
 * This script copyright James White, 2008-present.  All rights reserved.
 *
 * This script contains basic functions for use in any page on the site.
 */

/*
 * Underlines the link text on focus or mouseover.
 */
function hover(obj)
{
    obj.style.textDecoration = "underline";
}

/*
 * Un-underlines the link text on blur or mouseout.
 */
function unhover(obj)
{
    obj.style.textDecoration = "none";
}
//-->
