// change the link on the SmugMug Logo

YE.onAvailable('homelink', function(e) {
    this.href = "http://www.farmcountryphotos.com/";
    this.firstChild.alt = "Homepage";
    this.firstChild.title = "Homepage";
});

// removes the pipes characters in the toolbar header

YE.onAvailable('toolbar', function(e) {
this.innerHTML = this.innerHTML.replace(new RegExp(/\|/g),"");
});


sfHover = function() {
    var sfEls = document.getElementById("navbar").getElementsByTagName("li");
    for (var i=0; i<sfEls.length; i++) {
        sfEls[i].onmouseover=function() {
            this.className+=" hover";
        }
        sfEls[i].onmouseout=function() {
            this.className=this.className.replace(new RegExp(" hover\\b"), "");
        }
    }
}
if (window.attachEvent) window.attachEvent("onload", sfHover);




// email
function norobotmail(aUser, aDomain) { document.location = "mailto:" + aUser + "@" + aDomain; }






rightClickWarning = "All photos are property of or licensed for the use of Farm Country Photos. All rights reserved. Unauthorized use is prohibited."; 