// inline images
var home, books, articles, otherwork, practice, biography, contact;

// link buttons
var homeBase, homeActive, homeRoll;
var booksBase, booksActive, booksRoll;
var articlesBase, articlesActive, articlesRoll;
var otherworkBase, otherworkActive, otherworkRoll;
var practiceBase, practiceActive, practiceRoll;
var biographyBase, biographyActive, biographyRoll;
var contactBase, contactActive, contactRoll;

//Below is the code that pre-loads the graphics 

  homeBase = new Image();
  homeBase.src = "/graphics/main/icons/iconintro.gif";
  homeActive = new Image();
  homeActive.src = "/graphics/main/icons/iconintro_ON.gif";
  homeRoll = new Image();
  homeRoll.src = "/graphics/main/icons/iconintro_ON.gif";
 
  booksBase = new Image();
  booksBase.src = "/graphics/main/icons/iconbook.gif";
  booksActive = new Image();
  booksActive.src = "/graphics/main/icons/iconbook_ON.gif";
  booksRoll = new Image();
  booksRoll.src = "/graphics/main/icons/iconbook_ON.gif";
 
  articlesBase = new Image();
  articlesBase.src = "/graphics/main/icons/iconarticle.gif";
  articlesActive = new Image();
  articlesActive.src = "/graphics/main/icons/iconarticle_ON.gif";
  articlesRoll = new Image();
  articlesRoll.src = "/graphics/main/icons/iconarticle_ON.gif";
     
  otherworkBase = new Image();
  otherworkBase.src = "/graphics/main/icons/iconotherwork.gif";
  otherworkActive = new Image();
  otherworkActive.src = "/graphics/main/icons/iconotherwork_ON.gif";
  otherworkRoll = new Image();
  otherworkRoll.src = "/graphics/main/icons/iconotherwork_ON.gif";
   
  practiceBase = new Image();
  practiceBase.src = "/graphics/main/icons/iconpractice.gif";
  practiceActive = new Image();
  practiceActive.src = "/graphics/main/icons/iconpractice_ON.gif";
  practiceRoll = new Image();
  practiceRoll.src = "/graphics/main/icons/iconpractice_ON.gif";
  
  biographyBase = new Image();
  biographyBase.src = "/graphics/main/icons/iconbiography.gif";
  biographyActive = new Image();
  biographyActive.src = "/graphics/main/icons/iconbiography_ON.gif";
  biographyRoll = new Image();
  biographyRoll.src = "/graphics/main/icons/iconbiography_ON.gif";

  contactBase = new Image();
  contactBase.src = "/graphics/main/icons/registration.gif";
  contactActive = new Image();
  contactActive.src = "/graphics/main/icons/registration_ON.gif";
  contactRoll = new Image();
  contactRoll.src = "/graphics/main/icons/registration_ON.gif";



// rollover swapping function
function fSwapImage( in_InLineImgID, in_SwapImg )
{
  in_InLineImgID.src = in_SwapImg.src; 
	return;
}

