Your copy of the script has become altered somehow. You have:
Code:
var imageHTML='<img src="../public_html/scripts/'+imagepath+'" style="border-width: 0" />' //Construct HTML for enlarged image
if (typeof dest!="undefined") //Hyperlink the enlarged image?
imageHTML='<a href="../public_html/scripts/'+dest+'">'+imageHTML+'</a>'
where it should be just:
Code:
var imageHTML='<img src="'+imagepath+'" style="border-width: 0" />' //Construct HTML for enlarged image
if (typeof dest!="undefined") //Hyperlink the enlarged image?
imageHTML='<a href="'+dest+'">'+imageHTML+'</a>'
Either restore the original code or get a fresh copy of the script from the demo page and use it in place of yours.
Bookmarks