<!-- Ironman's Cool.js document  -->

<!-- Copyright THANKS FRANK March 2008 -->

<!-- Begin -->

<!-- Menu Graphics -->


   if (document.images) {
     var home_off = new Image();
     var home_on = new Image();

     var bio_off = new Image();
     var bio_on = new Image();
 
     var gigs_off = new Image();
     var gigs_on = new Image();

     var links_off = new Image();
     var links_on = new Image();

     var music_off = new Image();
     var music_on = new Image();

     var video_off = new Image();
     var video_on = new Image();

     var gallery_off = new Image();
     var gallery_on = new Image();

     var contact_off = new Image();
     var contact_on = new Image();
   }

   function loadImages() {
     if (document.images) {
       home_off.src = "images/home_off.png";
       home_on.src = "images/home_on.png";

       bio_off.src = "images/bio_off.png";
       bio_on.src = "images/bio_on.png";

       gigs_off.src = "images/gigs_off.png";
       gigs_on.src = "images/gigs_on.png";

       links_off.src = "images/links_off.png";
       links_on.src = "images/links_on.png";

       music_off.src = "images/music_off.png";
       music_on.src = "images/music_on.png";

       video_off.src = "images/video_off.png";
       video_on.src = "images/video_on.png";

       gallery_off.src = "images/gallery_off.png";
       gallery_on.src = "images/gallery_on.png";

       contact_off.src = "images/contact_off.png";
       contact_on.src = "images/contact_on.png";
     }
   }
    
   function activate(imgName) {
     if (document.images) {
       if ( eval(imgName + "_on.complete") ) {
         document.images[imgName].src = eval(imgName + "_on.src");
       }
     } 
   }

   function deactivate(imgName) {
     if (document.images) {
       if ( eval(imgName + "_off.complete") ) {
         document.images[imgName].src = eval(imgName + "_off.src");
       }
     }
   }

// End -->




