
/* Message generating function */ 
function disp_art_thumbs() 
{ 
 document.write('<div class="headerthumbs">');
 document.write('<IMG class="thumbfloat" NAME="thumb1" SRC="Images/thumb1.jpg" ALT="Distress Mode #1" ');
 document.write('ONCLICK="goObj(\'t1\')">');
 document.write('<IMG class="thumbfloat" NAME="thumb2" SRC="Images/thumb2.jpg" ALT="No Escape" ');
 document.write('ONCLICK="goObj(\'t2\')">');
 document.write('<IMG class="thumbfloat" NAME="thumb3" SRC="Images/thumb3.jpg" ALT="Burst of Color #2" ');
 document.write('ONCLICK="goObj(\'t3\')">');
 document.write('<IMG class="thumbfloat" NAME="thumb4" SRC="Images/thumb4.jpg" ALT="Life Behind The Haze" ');
 document.write('ONCLICK="goObj(\'t4\')">');
 document.write('<IMG class="thumbfloat" NAME="thumb5" SRC="Images/thumb5.jpg" ALT="Jumbalaya" ');
 document.write('ONCLICK="goObj(\'t5\')">');
 document.write('<IMG class="thumbfloat" NAME="thumb6" SRC="Images/thumb6.jpg" ALT="Three Es" ');
 document.write('ONCLICK="goObj(\'t6\')">');
 document.write('<IMG class="thumbfloat" NAME="thumb7" SRC="Images/thumb7.jpg" ALT="Distress Mode #2" ');
 document.write('ONCLICK="goObj(\'t7\')">');
 document.write('</div>');
} 

function goObj(dest) {
header = new String("stephie/index.html#")
self.location.href=header.concat(dest)
}

/* output the message */
disp_art_thumbs();


