photoBarDelay = 2;

filmstripMove = 0;


//filmStrip values you can override:
rightMoves = -5;
leftMoves = 5;


function hasPath(sPath)
{
re = new RegExp("\/" + sPath + "(\/|$)");
return re.test(window.location)
}


/* --- DISABLE CLICKING JOURNAL --- */

function doOnLoad()
{
if (window.AlbumID && window.AlbumID == "371133") //
{
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);";
}
}


/* --- DISABLE CLICKING JOURNAL --- */

