$(function() {

    $("a[href='#photostream'], a[href='#sets'], a[href='#interesting']").remove();
    
    var $allPhotos = $("#all-photos"),
        $origPhotoSet = $allPhotos.find(".flickr-thumb").flightbox(),
        numPhotos = $origPhotoSet.length,
        oneWidth = $origPhotoSet.width(),
        oneMargin = parseInt($origPhotoSet.css("margin-right")),
        blockWidth = (oneWidth * numPhotos) + (oneMargin * numPhotos);
        
    $(".flickr-thumb a").click(function(e) { e.preventDefault(); });
    
    function movePhotosLeft(first) {
    
        $origPhotoSet.clone(true).appendTo(".flickr-photos");
        
        $allPhotos.animate({
            right: blockWidth
        }, 200000, "linear", function() {
        
            $allPhotos.css("right", 0);
            $("#all-photos .flickr-thumb:lt("+numPhotos+")").remove();
            movePhotosLeft(); 
    
        });
    
    };
    
    movePhotosLeft(true);

});