window.addEvent('domready', function(){
    
    $$('div#startlist li.img').addEvents({
        mouseenter: function(){
            this.morph({
    	        'width': '150',
    	        'height': '160',
    	        'opacity': '100'
            });
		},
        mouseleave: function(){
            this.morph({
                'width': '100',
                'height': '60',
                'opacity': '50'
            });
        }
    });
});
