// JavaScript Document

jQuery(function() {

    jQuery.getFeed({
        url: '/web/photos/rss',
        success: function(feed) {
            
            var html = '';
            
            for(var i = 0; i < feed.items.length && i < 2; i++) {
            
                var item = feed.items[i];
                
                html += '<a href="'
                + item.link
                + '">'
                + item.description
                + '</a>';
                
            }
            
            jQuery('#dbphotos').append(html);
        }    
    });
});
