/*=========================================*/
/*== Position Paypal -                                           ==*/
/*=========================================*/
YE.onContentReady("altViews", MovePaypalContent);
function MovePaypalContent()
{
    var paypalObj = document.getElementById("paypalButtonSet");
    var altViews = document.getElementById("altViews");
    var smugmug= document.getElementById("smugmug");

    if (altViews && paypalObj && smugmug)
    {
        var paypalSetObj = paypalObj.parentNode.removeChild(paypalObj);
        altViews.appendChild(paypalSetObj);

        // see if we're in the right category
        if (YD.hasClass(document.body, "category_Texas") ||
            YD.hasClass(document.body, "category_Art") ||
            YD.hasClass(document.body, "category_Flowers") ||
            YD.hasClass(document.body, "category_America") ||
            YD.hasClass(document.body, "category_Landscapes") ||
            YD.hasClass(document.body, "category_Travel") ||
            YD.hasClass(document.body, "category_Animals"))
        {
            // put code here for the people category
            //paypalSetObj.style.display = "inline";
        }
    }    
}