<!--
    var Loaded = false;
    var LastImg0 = null;
    var LastImg1 = null;
    var LastImg2 = null;
    var img0, img1, img2, txt;
    
    function RollOn( image0 )
    {
     RollOn( image0, null, null );
    }
    
    function RollOn( image0, image1 )
    {
     RollOn( image0, image1, null );
    }
    
    function RollOn( image0, image1, image2 )
    {
     var rtrn = false;
     if( Loaded )
     {
      if( img0[ image0 ] )
      {
       LastImg0 = document.images[ image0 ].src;
       document.images[ image0 ].src = img0[ image0 ].src;
      }
      if( image1 && img1[ image0 ] )
      {
       LastImg1 = document.images[ image1 ].src;
       document.images[ image1 ].src = img1[ image0 ].src;
      }
      if( image2 && img2[ image0 ] )
      {
       LastImg2 = document.images[ image2 ].src;
       document.images[ image2 ].src = img2[ image0 ].src;
      }
      if( txt[ image0 ] )
      {
       window.status = txt[ image0 ];
       rtrn = true;
      }
     }
     return rtrn;
    }
    
    function RollOff( image0 )
    {
     RollOff( image0, null, null );
    }
    
    function RollOff( image0, image1 )
    {
      RollOff( image0, image1, null );
    }
    
    function RollOff( image0, image1, image2 )
    {
     var rtrn = false;
     if( Loaded )
     {
      if( LastImg0 )
      {
       document.images[ image0 ].src = LastImg0;
       LastImg0 = null;
      }
      if( LastImg1 )
      {
       document.images[ image1 ].src = LastImg1;
       LastImg1 = null;
      }
      if( LastImg2 )
      {
       document.images[ image2 ].src = LastImg2;
       LastImg2 = null;
      }
      if( txt[ "DEFAULT" ] )
      {
       window.status = txt[ "DEFAULT" ];
       rtrn = true;
      }
     }
     return rtrn;
    }
    
    function PageInit()
    {
     if( document.images )
     {
      img0 = new Array();
      img1 = new Array();
      img2 = new Array();
      txt = new Array();
      setTimeout( 'if( txt[ "DEFAULT" ] ) window.status = txt[ "DEFAULT" ]', 2000 );


      // EDIT BEGIN -- ROLLOVER DEFINITIONS

      txt[ "DEFAULT" ] = 'Starblood.org';

      img0[ "News" ] = new Image();
      img0[ "News" ].src = '/images/nav_news_on.gif';
      img1[ "News" ] = new Image();
      img1[ "News" ].src = '/images/txt_news.gif';
      txt[ "News" ] = 'News';
      
      img0[ "Info" ] = new Image();
      img0[ "Info" ].src = '/images/nav_info_on.gif';
      img1[ "Info" ] = new Image();
      img1[ "Info" ].src = '/images/txt_info.gif';
      txt[ "Info" ] = 'Information';
      
      img0[ "Discog" ] = new Image();
      img0[ "Discog" ].src = '/images/nav_discog_on.gif';
      img1[ "Discog" ] = new Image();
      img1[ "Discog" ].src = '/images/txt_discog.gif';
      txt[ "Discog" ] = 'Discography';
      
      img0[ "Media" ] = new Image();
      img0[ "Media" ].src = '/images/nav_media_on.gif';
      img1[ "Media" ] = new Image();
      img1[ "Media" ].src = '/images/txt_media.gif';
      txt[ "Media" ] = 'Media Coverage';
      
      img0[ "Images" ] = new Image();
      img0[ "Images" ].src = '/images/nav_images_on.gif';
      img1[ "Images" ] = new Image();
      img1[ "Images" ].src = '/images/txt_images.gif';
      txt[ "Images" ] = 'Images and Sounds';
      
      img0[ "InTheNight" ] = new Image();
      img0[ "InTheNight" ].src = '/images/nav_inthenight_on.gif';
      img1[ "InTheNight" ] = new Image();
      img1[ "InTheNight" ].src = '/images/txt_inthenight.gif';
      txt[ "InTheNight" ] = 'In The Night';
      
      img0[ "Classifieds" ] = new Image();
      img0[ "Classifieds" ].src = '/images/nav_classifieds_on.gif';
      img1[ "Classifieds" ] = new Image();
      img1[ "Classifieds" ].src = '/images/txt_classifieds.gif';
      txt[ "Classifieds" ] = 'Classifieds';
      
      img0[ "Live" ] = new Image();
      img0[ "Live" ].src = '/images/nav_live_on.gif';
      img1[ "Live" ] = new Image();
      img1[ "Live" ].src = '/images/txt_live.gif';
      txt[ "Live" ] = 'Live';
      
      img0[ "Chat" ] = new Image();
      img0[ "Chat" ].src = '/images/nav_chat_on.gif';
      img1[ "Chat" ] = new Image();
      img1[ "Chat" ].src = '/images/txt_chat.gif';
      txt[ "Chat" ] = 'Chat';
      
      img0[ "Contact" ] = new Image();
      img0[ "Contact" ].src = '/images/nav_contact_on.gif';
      txt[ "Contact" ] = 'Contact';
      
      img0[ "Sitemap" ] = new Image();
      img0[ "Sitemap" ].src = '/images/nav_sitemap_on.gif';
      txt[ "Sitemap" ] = 'Site Map';   
      
      // EDIT END -- ROLLOVER DEFINITIONS

      Loaded = true;
     }
    }
 //-->

