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

	var el = $$('#highlight ul'),
	image = el.getStyle('backgroundImage');




    el.addEvents({

		'mouseenter': function(){ this.morph({

		'background-image': 'url(pic/transparent25.png)',
		'margin-left': '20px',
		
            });},

		'mouseleave': function(){ this.morph({
		backgroundImage: image,
		'margin-left': '0',

            });}


    });
});
