
  // MouseOn (Mouseover)
	 
  // Light Grey on white background
  // Bio
  	 nextf1 = new Image();
     nextf1.src = "./art/biov866grey.png";	 
  // Reel
     nextg1 = new Image();
     nextg1.src = "./art/reelv866grey.png";
  // Contact
  	 nexth1 = new Image();
     nexth1.src = "./art/contactv866grey.png";
  // Press
  	 nexti1 = new Image();
     nexti1.src = "./art/pressv866grey.png";
  // Credits
     nextj1 = new Image();
     nextj1.src = "./art/creditsv866grey.png";

  // White on black background
  // Bio
     nextk1 = new Image();
     nextk1.src = "./art/biov899grey.png";
  // Reel 
     nextm1 = new Image();
     nextm1.src = "./art/reelv899grey.png";
  // Contact 
     nextn1 = new Image();
     nextn1.src = "./art/contactv899grey.png";
  // Press 
  	 nextp1 = new Image();
     nextp1.src = "./art/pressv899grey.png";
  // Credits 
  	 nextq1 = new Image();
     nextq1.src = "./art/creditsv899grey.png";
	         
  // MouseOff

  // Light Grey on white background	 
  // Bio
  	 nextf0 = new Image();
     nextf0.src = "./art/biov899grey.png";	 
  // Reel
     nextg0 = new Image();
     nextg0.src = "./art/reelv899grey.png";
  // Contact
  	 nexth0 = new Image();
     nexth0.src = "./art/contactv899grey.png";
  // Press
  	 nexti0 = new Image();
     nexti0.src = "./art/pressv899grey.png";
  // Credits
     nextj0 = new Image();
     nextj0.src = "./art/creditsv899grey.png";

  // White on black background
  // Bio
     nextk0 = new Image();
     nextk0.src = "./art/biov8w.png";
  // Reel
     nextm0 = new Image();
     nextm0.src = "./art/reelv8w.png";
  // Contact
     nextn0 = new Image();
     nextn0.src = "./art/contactv8w.png";
  // Press
  	 nextp0 = new Image();
     nextp0.src = "./art/pressv8w.png";
  // Credits
  	 nextq0 = new Image();
     nextq0.src = "./art/creditsv8w.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> */
