<!-- Image Preload Script

   if (document.images) {

     image1on = new Image();  image1on.src = "http://www.naughtydawg.com/images/menu_dawghouse_on.gif";  
     image2on = new Image();  image2on.src = "http://www.naughtydawg.com/images/menu_artfolio_on.gif";
     image3on = new Image();  image3on.src = "http://www.naughtydawg.com/images/menu_webfolio_on.gif";
     image4on = new Image();  image4on.src = "http://www.naughtydawg.com/images/menu_play_on.gif";
     image5on = new Image();  image5on.src = "http://www.naughtydawg.com/images/menu_life_on.gif";
     image6on = new Image();  image6on.src = "http://www.naughtydawg.com/images/menu_forum_on.gif";
     image7on = new Image();  image7on.src = "http://www.naughtydawg.com/images/menu_sales_on.gif";
     image8on = new Image();  image8on.src = "http://www.naughtydawg.com/images/menu_link_on.gif";
     image9on = new Image();  image9on.src = "http://www.naughtydawg.com/images/menu_resume_on.gif";
        
     image1off = new Image();  image1off.src = "http://www.naughtydawg.com/images/menu_dawghouse_off.gif";  
     image2off = new Image();  image2off.src = "http://www.naughtydawg.com/images/menu_artfolio_off.gif";
     image3off = new Image();  image3off.src = "http://www.naughtydawg.com/images/menu_webfolio_off.gif";
     image4off = new Image();  image4off.src = "http://www.naughtydawg.com/images/menu_play_off.gif";
     image5off = new Image();  image5off.src = "http://www.naughtydawg.com/images/menu_life_off.gif";
     image6off = new Image();  image6off.src = "http://www.naughtydawg.com/images/menu_forum_off.gif";
     image7off = new Image();  image7off.src = "http://www.naughtydawg.com/images/menu_sales_off.gif";
     image8off = new Image();  image8off.src = "http://www.naughtydawg.com/images/menu_link_off.gif";
     image9off = new Image();  image9off.src = "http://www.naughtydawg.com/images/menu_resume_off.gif";

   }

   function turnOn(imageName) {
     if (document.images) {
       document[imageName].src = eval(imageName + "on.src");
     }
   }

   function turnOff(imageName) {
     if (document.images) {
       document[imageName].src = eval(imageName + "off.src");
     }
   }
//-->