In the application root carry out the following steps:- 
1) Create a folder called classes and copy the ShowAlbum.jar file into this directory.
2) Create a folder called images inside classes and place your images in this directory.(.jpeg,.jpg and .gif are supported).As in the sample below the filenames have to be Friend0.jpg,Friend1.jpg......Friendn.jpg
3) The imageLabel will have the tooltip to be displayed for each individual image separated by a '|'
3) To embed in the HTML file a sample code is given below:- 
  
 <applet code="Album.AlbumShow.class" codebase="./classes/" archive="ShowAlbum.jar" width="500" height="470">
 <param name="count" value="3">
 <param name="filename" value="Friend">
 <param name="minspeed" value="1000">
 <param name="maxspeed" value="60000">
 <param name="extension" value="jpg">
 <param name="imageLabel" value="tooltip 1|tooltip 2|tooltip 3">
 <b>This browser does not support Java....</b>
</applet>

This is the code I have put in Tomcat after creating a context called rd in webapps.