menud_02 = new Image();
menud_02.src = "menud_02.gif";

menud_06 = new Image();
menud_06.src = "menud_06.gif";

menud_08 = new Image();
menud_08.src = "menud_08.gif";

menud_07 = new Image();
menud_07.src = "menud_07.gif";

menud_09 = new Image();
menud_09.src = "menud_09.gif";

function MM_openBrWindow(theURL,winName,features) { //v2.0
if (window.open)
window.open(theURL,winName,features);
}
//Rollover
function init() {
  if (!document.getElementById) return
  var imgOriginSrc;
  var imgTemp = new Array();
  var imgarr = document.getElementsByTagName('img');
  for (var i = 0; i < imgarr.length; i++) {
    if (imgarr[i].getAttribute('hsrc')) {
        imgTemp[i] = new Image();
        imgTemp[i].src = imgarr[i].getAttribute('hsrc');
        imgarr[i].onmouseover = function() {
            imgOriginSrc = this.getAttribute('src');
            this.setAttribute('src',this.getAttribute('hsrc'))
        }
        imgarr[i].onmouseout = function() {
            this.setAttribute('src',imgOriginSrc)
        }
    }
  }
}
onload=init;

//Sound controls
function playSound() { document.firstSound.play(); }
function pauseSound() { document.firstSound.pause(); }
function stopSound() { document.firstSound.stop(); }