﻿function toggleBg (div, bOver ) 
{
    if(bOver)
        div.style.backgroundImage = "url(http://"+top.location.host+"/images/d2_navlink_bg_hover.gif)";
    else
        div.style.backgroundImage = "none";
}
