
if (document.images) {
    arImLoad = new Array (
       "images/d12.gif",	   
       "images/d22.gif",
       "images/d32.gif",
       "images/d42.gif",
       "images/d52.gif",
       "images/d62.gif"
		);
    arImList = new Array ();
    for (counter in arImLoad) {
        arImList[counter] = new Image();
        arImList[counter].src = arImLoad[counter];
    }
}
    function navOver(dir,over) {
	if (!document.images) {return};
		whichIm2 = document.images[dir];
	if (over) { 
				whichIm2.src = "images/" + dir + "2.gif";}
             else { 
				 	whichIm2.src = "images/" + dir + "1.gif";}
    }

