  //mouse over nav buttons
var NavButtons = new Array();
var supported = navigator.userAgent.indexOf("Mozilla")==0 && navigator.userAgent.substring(8,9) >= 3;
      function openWin() {
      if(supported) {
      howto = window.open("howto.html","howto","resizable=no,scrollbars=yes,status=no,height=500,width=500");
      return false;
      }
      else
      return true;
      }
// 
function NavButton(defsrc, hotsrc, txt){
if (supported){
this['default'] = new Image();
this['default'].src = defsrc;
this['hot'] = new Image();
this['hot'].src = hotsrc;
}
this['text'] = txt;
}
function RollOver(imgname){
if (supported){
document.images[imgname].src = NavButtons[imgname]['hot'].src;
}
StatusOver(imgname);
}
function RollOut(imgname){
if (supported){
document.images[imgname].src = NavButtons[imgname]['default'].src;
}
window.status = '';
}
function StatusOver(imgname) {
window.status = NavButtons[imgname]['text'];
}
function StatusOut() {
window.status = '';
}

// *************** MENU BUTNZ *************************
NavButtons['logo'] = new 
NavButton('pics_krush/logo_on.jpg', 'pics_krush/logo_off.gif', 'Enter Site');
NavButtons['enter'] = new 
NavButton('pics_krush/butn_enter_on.jpg', 'pics_krush/butn_enter_off.jpg', 'Enter MySpace');
NavButtons['meet'] = new 
NavButton('pics_krush/butn_meet_on.jpg', 'pics_krush/butn_meet_off.jpg', 'Meet KRUSH');
NavButtons['contact'] = new 
NavButton('pics_krush/butn_contact_on.jpg', 'pics_krush/butn_contact_off.jpg', 'Contact KRUSH');
NavButtons['brochure'] = new 
NavButton('pics_krush/butn_brochure_on.jpg', 'pics_krush/butn_brochure_off.jpg', 'KRUSH brochure');
NavButtons['classics'] = new 
NavButton('pics_krush/butn_classics_on.jpg', 'pics_krush/butn_classics_off.jpg', 'the classics');
NavButtons['elist'] = new 
NavButton('pics_krush/butn_elist_on.jpg', 'pics_krush/butn_elist_off.jpg', 'the elist');
NavButtons['listen'] = new 
NavButton('pics_krush/butn_listen_on.jpg', 'pics_krush/butn_listen_off.jpg', 'listen');
NavButtons['reverb'] = new 
NavButton('pics_krush/butn_reverb_on.jpg', 'pics_krush/butn_reverb_off.jpg', 'Reverb Nation');
//  End Script