//<![CDATA[
// Slide-effekt für die Startseite

window.addEvent('domready', function() {
    $$('#content').each(function(el){
        el.getChildren('.startbox').addEvent('mouseenter',function(e){
            this.morph({
    	        'width': '260px',
				'left': '0px'
            });
        });
        el.getChildren('.startbox').addEvent('mouseleave',function(e){
            this.morph({
			    'duration': 'long',
                'width': '129px',
				'left': '130px'
            });
        });
    });
});

//]]>

