window.onload = function() {
	var m1 = document.getElementById('m1');
	
	m1.onmouseover = function() {
      this.style.backgroundColor='#B3EF98';
	}
	m1.onmouseout = function() {
	  this.style.backgroundColor='#dae6d7';
    }
	
  for(var i = 2; i < 13; i++) {
    document.getElementById('m' + i).onmouseover = function() {
	  //this.setAttribute('class', 'menuOn');
	  //this.style.backgroundImage='';
      this.style.backgroundColor='#fedc71';
    }
	document.getElementById('m' + i).onmouseout = function() {
	  //this.setAttribute('class', 'menu');
	  //this.style.backgroundImage='';
	  this.style.backgroundColor='#dae6d7';
    }
  }
}