// JavaScript Document for menu volleybredene.be

window.addEvent('domready', function(){

  // First list, using CSS styles in the JavaScript
  var list = $$('#mnv DT');

  list.set('morph', {
    duration: 300
  });

  list.addEvents({

    mouseenter: function(){
      // this refers to the element in an event
      this.morph({
		 'padding-top':'5px',
        'background-color': '#6495ed'
      });
    },

    mouseleave: function(){
      // this refers to the element in an event
      this.morph({
		  'padding-top':'0px',
		'background-color': '#8186a6'  
      });
    }

  });
 
});


