
  // MouseOn (Mouseover)
  // Brown on white background
  // Bio
     nexta1 = new Image();
     nexta1.src = "./art/biobr2.png";
  // Reel 
     nextb1 = new Image();
     nextb1.src = "./art/reelbr2.png";
  // Contact 
     nextc1 = new Image();
     nextc1.src = "./art/contactbr2.png";
  // Press 
  	 nextd1 = new Image();
     nextd1.src = "./art/pressbr2.png";
  // Credits 
  	 nexte1 = new Image();
     nexte1.src = "./art/creditsbr2.png";
	 
  // Blue on white background
  // Bio
  	 nextf1 = new Image();
     nextf1.src = "./art/biox2.png";	 
  // Reel
     nextg1 = new Image();
     nextg1.src = "./art/reelx2.png";
  // Contact
  	 nexth1 = new Image();
     nexth1.src = "./art/contactx2.png";
  // Press
  	 nexti1 = new Image();
     nexti1.src = "./art/pressx2.png";
  // Credits
     nextj1 = new Image();
     nextj1.src = "./art/creditsx2.png";

  // White on black background
  // Bio
     nextk1 = new Image();
     nextk1.src = "./art/bioz2.png";
  // Reel 
     nextm1 = new Image();
     nextm1.src = "./art/reelz2.png";
  // Contact 
     nextn1 = new Image();
     nextn1.src = "./art/contactz2.png";
  // Press 
  	 nextp1 = new Image();
     nextp1.src = "./art/pressz2.png";
  // Credits 
  	 nextq1 = new Image();
     nextq1.src = "./art/creditsz2.png";
	         
  // MouseOff
  // Brown on white background
  // Bio 
     nexta0 = new Image();
     nexta0.src = "./art/biobr.png";
  // Reel 
     nextb0 = new Image();
     nextb0.src = "./art/reelbr.png";
  // Contact 
     nextc0 = new Image();
     nextc0.src = "./art/contactbr.png";
  // Press 
  	 nextd0 = new Image();
     nextd0.src = "./art/pressbr.png";
  // Credits 
  	 nexte0 = new Image();
     nexte0.src = "./art/creditsbr.png";

  // Blue on white background	 
  // Bio
  	 nextf0 = new Image();
     nextf0.src = "./art/biox3.png";	 
  // Reel
     nextg0 = new Image();
     nextg0.src = "./art/reelx3.png";
  // Contact
  	 nexth0 = new Image();
     nexth0.src = "./art/contactx3.png";
  // Press
  	 nexti0 = new Image();
     nexti0.src = "./art/pressx3.png";
  // Credits
     nextj0 = new Image();
     nextj0.src = "./art/creditsx3.png";

  // White on black background
  // Bio
     nextk0 = new Image();
     nextk0.src = "./art/bioz3.png";
  // Reel
     nextm0 = new Image();
     nextm0.src = "./art/reelz3.png";
  // Contact
     nextn0 = new Image();
     nextn0.src = "./art/contactz3.png";
  // Press
  	 nextp0 = new Image();
     nextp0.src = "./art/pressz3.png";
  // Credits
  	 nextq0 = new Image();
     nextq0.src = "./art/creditsz3.png";

  

function swap_mouseon(no){
     if (document.images) {
          document.images[no].src = eval([no] + "1.src");
          }
}

function swap_mouseoff(no){
     if (document.images) {
          document.images[no].src = eval([no]+ "0.src");
          }
}

/* Sample HTML:
 <a href="./reel.html" onmouseout="swap_mouseoff('nexta')" onmouseover="swap_mouseon('nexta');return true "><img src="../art/reelb.gif" id="linka" title="Reel" alt="Reel"/></a> */