Just a few changes, find these lines and sections, add the parts indicated in red:
Code:
<p align="center"><a id="_Ath_Link"><img id="_Ath_Slide" onload="OnImgLoad()"></a> </p>
Code:
function Update(){
getobject("_Ath_Slide").src = g_ImageTable[g_iimg][0];
getobject("_Ath_Link").href = g_ImageTable[g_iimg][2];
if (g_ImageTable[g_iimg][2]=='')
getobject("_Ath_Link").removeAttribute('href', 0)
getobject("_Ath_FileName").innerHTML = g_ImageTable[g_iimg][1];
getobject("_Ath_Img_X").innerHTML = g_iimg + 1;
getobject("_Ath_Img_N").innerHTML = g_imax;
}
Code:
//configure the below images, descriptions and links to your own.
g_ImageTable[g_imax++] = new Array ("cake.gif", "It's a cake!", "http://www.google.com");
g_ImageTable[g_imax++] = new Array ("bike.gif", "Bike Rider.", "");
g_ImageTable[g_imax++] = new Array ("player.gif", "Soccer Player.", "");
g_ImageTable[g_imax++] = new Array ("watch.gif", "Watch Out!!", "");
g_ImageTable[g_imax++] = new Array ("hurry.gif", "Hurry Up!", "");
//extend the above list as desired
Bookmarks