/**
 *	@author Jonathan Stevens
 *	@copyright 2008
 */

function mouseOver(id)
{
document.getElementById(id).style.visibility = "visible";
}

function mouseOut(id)
{
document.getElementById(id).style.visibility = "hidden";
}

