/* Change name of Gallery section */
YE.onAvailable('galleryTitle', function() {this.innerHTML = 'The Summerwrights Galleries'});

/* Change name of Featured Galleries section */
YE.onAvailable('featuredTitle', function() {this.innerHTML = 'Recently Updated Galleries'});

/* Block action on clicking photos */
/* First if statement declares which galleries to work with */
/* || = OR and is used for multiple galleries */
/* 8904079 = NZ Blog, 8891645 = Contact Us, 8891950 = Services, 8358998 = Bio, 9186913 = Sales */
function doOnLoad() {
  if (window.AlbumID && (window.AlbumID == "8904079") || (window.AlbumID == "8891645") || (window.AlbumID == "8891950") || (window.AlbumID == "8358998") || (window.AlbumID == "9186913")) //
  removeLinkFromImg();
}

function removeLinkFromImg()

{

    var links = document.getElementsByTagName("A");

    for (var i = 0; i < links.length; i++)

    {

        var link = links[i];

        var divElm = link.parentNode;

        if (!divElm)

            continue;

        divElm = divElm.parentNode;

        if (!divElm)

            continue;

        if (divElm.className.indexOf("photo")<0)

            continue;

        link.href = "javascript:void(0);";

    }

} 