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

    $$('#banner').addEvents({
        mouseenter: function(){
            this.setStyle('cursor','pointer');

            this.morph({
                'margin-left':  '0 '
            });
		},
        mouseleave: function(){
            this.morph({
		'margin-left':  '-385px '
            });
        }
    });

});

