//<!--

function MoveFlower()
{
    var usableWidth = (document.body.clientWidth - 970);
    
    if (usableWidth > 0)
    {
        usableWidth = usableWidth / 2;
    }
    
    var flowerPosition = usableWidth - 115;
    
    var flowerContainer = document.getElementById("Flower");
    flowerContainer.style.left = flowerPosition + "px";
}

window.onload = function()
{
    //move the flower
    MoveFlower();
    window.onresize = MoveFlower;
    
    if (window.InitSiteMap)
    {
        InitSiteMap();
    }
    
    if (window.StartBingMap)
    {
        StartBingMap();
    }
}

//-->