var anchorNames = [
     "index.php?page=home",
     "index.php?page=notes",
     "index.php?page=mssponsor",
     "index.php?page=guitar",
     "index.php?page=powertabs",
     "index.php?page=tracks",
     "index.php?page=illustration",
     "index.php?page=sites" ];
     
var anchorImages = [
     "imageswap1",
     "imageswap2",
     "imageswap3",
     "imageswap4",
     "imageswap5",
     "imageswap6",
     "imageswap7",
     "imageswap8" ];

for(i=0;i<anchorNames.length;i++) {
   document.write('<a href="',anchorNames[i],'">','<img src="images//miscimages//anchors//',anchorImages[i],'.jpg" id="',anchorImages[i],'" onmouseover="overHandler(this)" onmouseout="outHandler(this)" border="0" />','</a><br />');
}