rightClickWarning = "All photographs appearing on this website are under the protection of the United States and International Copyright Laws. Please don't steal!!"; // script to replace a user's name in the breadcrumb with "Home"
YE.onContentReady("breadCrumbTrail", ReplaceTopOfBreadcrumbWithHome);

function ReplaceTopOfBreadcrumbWithHome()
{
    var str = this.innerHTML.replace(/\n/g, " ");
    this.innerHTML = str.replace(/\>[^\<]+<\/a>/i, ">Home</a>");
}

<br>
YE.onDOMReady(AddItemsToBuyButton);

function AddItemsToBuyButton()
{
    var buyButton = YAHOO.widget.Button.getButton("buyButton");
    if (buyButton)
    {
        var newBuyItem = { text: "Cool photo gifts", url: "http://www.smugmug.com/prints/catalog/#Merchandise", target: "_blank"};
        buyButton.getMenu().addItem(newBuyItem);
    }
}<br>

