  // JavaScript Document
 
  window.addEvent('domready', function() { 
	  var links = $$('a.menu'); //Returns an array of all anchor tags with the class 'myClass' within the DOM element with id 'myElement'.
	  links.each(function(a, index){
		a.addEvent('mouseover', function(event) {
			  a.style.color ="#49fbfb";				  
		});
	  
		a.addEvent('mouseout', function(event) {
			  a.style.color ="#FFF";					  
		});
	  });
  });
  
  
  
