jQuery(function() {

    jQuery.getFeed({
        url: 'assets/scripts/jfeed/proxy.php?url=http://blog.cmi-gold-silver.com/feed/',
        success: function(feed) {
        
            jQuery('.blog').append();
            
            var html = '';
            
            for(var i = 0; i < feed.items.length && i < 1; i++) {
            
                var item = feed.items[i];
                
                html += '<p class="blog_title">'
                + '<a href="'
                + item.link
                + '" target="_blank">'
                + item.title
                + '</a>'
                + '</p>'
				html += '<p class="blog_date">'
                + item.updated
                + '</p>';

				html += '<p class="description">'
	            + item.description
				+ '<a class="continue" href="'
	            + item.link
	            + '" target="_blank">'
	            + 'Read the rest</a>'
	            + '</p>';
            }
            
            jQuery('.blog').append(html);
        }    
    });
});