function hasPath(sPath)
{
re = new RegExp("\/" + sPath + "(\/|$)");
return re.test(window.location)
}




// change the link on the SmugMug Logo

YE.onAvailable('homelink', function(e) {
this.href = "http://cphoto.smugmug.com/";
this.firstChild.alt = "Crystalized Photography";
this.firstChild.title = "Crystalized Photography";
});



/* referral link code for smugmug logo */
function AddReferralCode()  {
  var links = this.getElementsByTagName("A");
  if (links && (links.length != 0)) {
    var smugLink = links.item(0);
    smugLink.href = "http://www.smugmug.com/?referrer=AiZ1fwZmcW1sw";
  }
}
YE.onAvailable('footer', AddReferralCode);

/* remove click option/mouse over for services page */
function doOnLoad()
{
if (window.AlbumID && window.AlbumID == "3542612") //
{
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;
if (divElm.className.indexOf("photo")<0) continue;
link.href = "javascript:void(0);";
}
}




rightClickWarning = "All photos are © Crystal Rahim - Crystalized Photography. All rights reserved. Unauthorized use is prohibited."