<!-- Begin hiding JavaScript
// Main Navigation Bar

var imagesLoaded = false;

// Does current browser support images?
if (document.images)
{
   // Constants
   var mainPath = "images/navbar/primary/";
   
   // Home
   var home = new Image();
   var home_focus = new Image();
   var home_press = new Image();
   home.src = mainPath + "home.gif";
   home_focus.src = mainPath + "home_focus.gif";
   home_press.src = mainPath + "home_press.gif";

   // Bio
   var bio = new Image();
   var bio_focus = new Image();
   var bio_press = new Image();
   bio.src = mainPath + "bio.gif";
   bio_focus.src = mainPath + "bio_focus.gif";
   bio_press.src = mainPath + "bio_press.gif";

   // Practice
   var practice = new Image();
   var practice_focus = new Image();
   var practice_press = new Image();
   practice.src = mainPath + "practice.gif";
   practice_focus.src = mainPath + "practice_focus.gif";
   practice_press.src = mainPath + "practice_press.gif";

   // Rights
   var rights = new Image();
   var rights_focus = new Image();
   var rights_press = new Image();
   rights.src = mainPath + "rights.gif";
   rights_focus.src = mainPath + "rights_focus.gif";
   rights_press.src = mainPath + "rights_press.gif";

   // Contact
   var contact = new Image();
   var contact_focus = new Image();
   var contact_press = new Image();
   contact.src = mainPath + "contact.gif";
   contact_focus.src = mainPath + "contact_focus.gif";
   contact_press.src = mainPath + "contact_press.gif";

   // Links
   var links = new Image();
   var links_focus = new Image();
   var links_press = new Image();
   links.src = mainPath + "links.gif";
   links_focus.src = mainPath + "links_focus.gif";
   links_press.src = mainPath + "links_press.gif";

   imagesLoaded = true;
}
// End hiding JavaScript -->