function showhide(img, id)
{
    var e;
    e = document.getElementById(id);
    if (e)
    {
        if (e.style.display == "none")
        {
            e.style.display = "block";
            img.src = "ico/minus.png";
        }
        else
        {
            e.style.display = "none";
            img.src = "ico/plus.png";
        }
    }
}

function AdjustPage()
{
    //
    // Produce the rounded corners effect if we can
    //
    if(NiftyCheck())
    {
        RoundedTop("div.box","#000","#ABABAB");
        RoundedBottom("div.box","#000","#FFD");

        Rounded("div#facts","#000","#DDF");

        Rounded("li.thumbnail","#000","#CCF"); 
    }
}


