//--------------------------------------------------------------
// CODE TO PRINT OUT SMALL SCRAPBOOK THUMBNAILS FOR NAVIGATION 
// AT BOTTOM OF EACH SCRAPBOOK PAGE
//--------------------------------------------------------------
var txt = '<div style="clear:both"><br /><br><hr style="height:1px; color:#000000; background-color:#000000; border:0;";  /><br /></div>';
txt += '<table align="center" id="imglink" cellpadding="0" cellspacing="0" border="0" >';
txt += '<tr><td style="padding-right:40px">';
if (imgPrefix == 'deeparchive') 
	txt += '<img src="images/archiveSmOn.jpg" alt="Deep Archive" title="Deep Archive" width="85" height="89"  id="deep" />';
else 
	txt += '<a href="deeparchive.php" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage(\'deep\',\'\',\'images/archiveSmOn.jpg\',1)"><img src="images/archiveSmOff.jpg" alt="Deep Archive" title="Deep Archive" width="85" height="89"  id="deep" /></a>';
txt += '</td><td style="padding-right:40px">';

if (imgPrefix == 'work')
	txt += '<img src="images/workSmOn.jpg" alt="Canotes At Work" title="Canotes At Work" width="85" height="89" id="work" />';
else 
	txt += '<a href="atwork.php" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage(\'work\',\'\',\'images/workSmOn.jpg\',1)"><img src="images/workSmOff.jpg" alt="Canotes At Work" title="Canotes At Work" width="85" height="89" id="work" /></a>';
txt += '</td><td style="padding-right:40px">';

if (imgPrefix == 'play') 
	txt += '<img src="images/playSmOn.jpg" alt="Canotes At Play" title="Canotes At Play" width="85" height="89"  id="play" />';
else 
	txt += '<a href="atplay.php" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage(\'play\',\'\',\'images/playSmOn.jpg\',1)"><img src="images/playSmOff.jpg" alt="Canotes At Play" title="Canotes At Play" width="85" height="89"  id="play" /></a>';
txt += '</td><td style="padding-right:40px">';

if (imgPrefix == 'toys') 
	txt += '<img src="images/toysSmOn.jpg" alt="Greg&#8217;s Toys" title="Greg&#8217;s Toys" width="85" height="89"  id="toys" />';
else 
	txt += '<a href="gregstoys.php" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage(\'toys\',\'\',\'images/toysSmOn.jpg\',1)"><img src="images/toysSmOff.jpg" alt="Greg&#8217;s Toys" title="Greg&#8217;s Toys" width="85" height="89"  id="toys" /></a>';
txt += '</td><td style="padding-right:40px">';

if (imgPrefix == 'art')
	txt += '<img src="images/artSmOn.jpg" alt="Greg&#8217;s Art" title="Greg&#8217;s Art" width="85" height="89" id="art" />';
else
	txt += '<a href="gregsart.php" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage(\'art\',\'\',\'images/artSmOn.jpg\',1)"><img src="images/artSmOff.jpg" alt="Greg&#8217;s Art" title="Greg&#8217;s Art" width="85" height="89" id="art" /></a>';
txt += '</td></tr></table>';
document.write(txt);
