 $(function(){
          $('#img-porche').each(function(){
            $(this)
              .css('position','absolute')
              .animate(
                {
                   left: $(window).width() - $(this).width() -
                       $(this).position().left
                },
                2000,
                function(){ $(this).hide(); });
          });
      });
