jQuery(function() {

    jQuery.getFeed({
        url: './blog/wp-feed.php',
        success: function(feed) {
        
            jQuery('#result').append('<h2>'
            + '<a href="http://www.macgrecopa.com/blog/wp-feed.php" title="Syndicate this content"><img src="images/rss1.jpg" alt="" /><href="'
            + feed.link
            + '">'
            + feed.title
            + '</a>'
            + '</h2>');
            
            var html = '';
            
            for(var i = 0; i < feed.items.length && i < 4; i++) {
            
                var item = feed.items[i];
                
                html += '<h3>'
                + '<img src="images/gee.gif"><a href="'
                + item.link
                + '">'
                + item.title
                + '</a>'
                + '</h3>';
                
                html += '<div class="updated">'
                + item.updated
                + '</div>';
                
            }
            
            jQuery('#result').append(html);
        }    
    });
});