rightClickWarning = "All photos are property of Daniel Stainer Fine Art Photography. All rights reserved. Unauthorized use is prohibited.";

YE.onAvailable('galleryTitle', function() {
    this.innerHTML = 'Fine Art Galleries'
});

YE.onContentReady('bodyWrapper', function() {
    if (!YD.hasClass(document.body, 'smugmug_ajax')) 
        delHover();
});

onPhotoShow.subscribe(function(){YE.onAvailable('mainImage', delHover)});

YE.onDOMReady(function()
{    
    if(YD.hasClass(document.body,'notLoggedIn')) {
        useLightbox = false;
        showPhotoBar = false;
    }
});

function delHover() {
    oLst = YD.getElementsBy(function(el) {return (YD.hasClass(el,'imgBorder') || YD.hasClass(el,'imgBorderOn'))},'img');
    for (i=0; i < oLst.length ; i++) {
        if (oLst[i].title && oLst[i].title != '') oLst[i].title = '';
        if (oLst[i].alt && oLst[i].alt != '') oLst[i].alt = '';
    }
}