A randomizer - great idea. I put it onto the to do list ;D
I am not so sure how well the Applet loader works for everyone. I am using jQuery to load a file with the actually applet tag when the placeholder image gets clicked. Here is the code if anyone is interested?
header:
<script type="text/javascript" src="script/jquery/jquery.js"></script>
body:
<div id="applet_location"><img id="applet_placeholder" src="webstart/applet-placeholder.gif" style="cursor: pointer;"></div>
<script type="text/javascript">
$("#applet_placeholder").click(function() {
$("#applet_placeholder").attr("src", "webstart/applet-loading.gif");
$("#applet_location").load("webstart/applet.inc");
});
</script>
Then the actual applet.inc file:
<applet code="com.nobleavatar.client.AppClient"
codebase="http://www.nobleavatar.com/webstart/unpacked"
archive="jarfile1.jar,jarfile2.jar"
width="760" height="460">
<param name="image" value="http://www.nobleavatar.com/webstart/applet-loading.gif">
<param name="boxmessage" value="Loading Noble Avatar...">
</applet>