Since welcome is your first rel="thumbnail" link, you can just add this (red) to the init function in the thumbnailviewer.js file:
Code:
init:function(){ //Initialize thumbnail viewer script by scanning page and attaching appropriate function to links with rel="thumbnail"
if (!this.enableAnimation)
this.opacitystring=""
var pagelinks=document.getElementsByTagName("a")
for (var i=0; i<pagelinks.length; i++){ //BEGIN FOR LOOP
if (pagelinks[i].getAttribute("rel") && pagelinks[i].getAttribute("rel")=="thumbnail"){ //Begin if statement
if(!window.opera&&!pagelinks[i].attachEvent)//added to remove outline stlye in FF
this.dotask(pagelinks[i],function(){this.style.outlineStyle='none'},'mouseover') //"
pagelinks[i].onclick=function(){
if(!window.opera){//added to remove outline stlye in FF
this.blur();
this.style.outlineStyle='';
}
thumbnailviewer.stopanimation() //Stop any currently running fade animation on "thumbbox" div before proceeding
thumbnailviewer.loadimage(this) //Load image
return false
}
this.targetlinks[this.targetlinks.length]=pagelinks[i] //store reference to target link
} //end if statement
} //END FOR LOOP
//Reposition "thumbbox" div when page is resized
this.dotask(window, function(){if (thumbnailviewer.thumbBox.style.visibility=="visible") thumbnailviewer.centerDiv(thumbnailviewer.thumbBox)}, "resize")
this.targetlinks[0].onclick.apply(this.targetlinks[0]);
} //END init() function
Bookmarks