// JavaScript Document

//news, band, shows, releases, media, gallery, merch, links, contact

//alert(navigator.userAgent);
//alert(document.URL);
//navigator.appName, appVersion,

var browser = new Array('Firefox','MSIE 7.0');
var pages = new Array('news',
                      'band',
                      'shows'
                      );
var buttondir = 'http://www.bestbeforetoday.de/fileadmin/img/menu/';
                      
function buildMenu(){


  document.getElementById('menu').innerHTML = '<ul id="Navigation"><li id="c1"> <a href="http://www.bestbeforetoday.de/index.htm"><img src="http://www.bestbeforetoday.de/fileadmin/img/menu/news.png" name="news" width="50" height="20" onmouseover="buttonRo(this);" onmouseout="buttonNo(this);" /></a></li><li id="c2"> <a href="http://www.bestbeforetoday.de/band.htm"> <img src="http://www.bestbeforetoday.de/fileadmin/img/menu/band.png" name="band" width="49" height="23" onmouseover="buttonRo(this);" onmouseout="buttonNo(this);"/></a></li><li id="c3"> <a href="http://www.bestbeforetoday.de/shows.htm"> <img src="http://www.bestbeforetoday.de/fileadmin/img/menu/shows.png" name="shows" width="57" height="22" onmouseover="buttonRo(this);" onmouseout="buttonNo(this);"/></a></li><li id="c4"> <a href="http://www.bestbeforetoday.de/releases.htm"> <img src="http://www.bestbeforetoday.de/fileadmin/img/menu/releases.png" name="releases" width="82" height="25" onmouseover="buttonRo(this);" onmouseout="buttonNo(this);"/></a></li><li id="c5"> <a href="http://www.bestbeforetoday.de/media.htm"> <img src="http://www.bestbeforetoday.de/fileadmin/img/menu/media.png" name="media" width="53" height="21" onmouseover="buttonRo(this);" onmouseout="buttonNo(this);"/></a></li><li id="c6"> <a href="http://www.bestbeforetoday.de/links.htm"> <img src="http://www.bestbeforetoday.de/fileadmin/img/menu/links.png" name="links" width="52" height="21" onmouseover="buttonRo(this);" onmouseout="buttonNo(this);"/></a></li><li id="c7"> <a href="http://www.bestbeforetoday.de/merch.htm"><img src="http://www.bestbeforetoday.de/fileadmin/img/menu/merch.png" name="merch" width="57" height="22" onmouseover="buttonRo(this);" onmouseout="buttonNo(this);"/></a></li><li id="c8"> <a href="http://www.bestbeforetoday.de/contact.htm"> <img src="http://www.bestbeforetoday.de/fileadmin/img/menu/contact.png" name="contact" width="72" height="23" onmouseover="buttonRo(this);" onmouseout="buttonNo(this);"/></a></li></ul><div></div>';
}

function buttonNo(button){
  button.src = buttondir + button.name + '.png';
}

function buttonRo(button){
  button.src = buttondir + button.name + '_ro.png';
}