Try finding the below function inside the .js file:
Code:
pagelinks[i]["onclick"]=function(){ //Cancel default click action
return false
}
and change that to:
Code:
pagelinks[i]["onclick"]=function(){ //Cancel default click action
var linktarget=this.getAttribute("rev").split("::")[1]
if (linktarget)
window.location=linktarget
return false
}
This causes your thumbnails when clicked on to go to a URL based on that specified inside the rev=loadarea:: attribute:
Code:
<a href="http://www.nasa.gov/images/content/167040main_image_feature_738_ys_4.jpg" rel="enlargeimage::mouseover" rev="loadarea::http://www.dynamicdrive.com" title="This is an example">Thumbnail Example 1</a><br />
So with the changes, clicking on the thumbnail link will go to DD, while mousing over it will show the nasa image.
Bookmarks