$(document).ready(function(){
    $.ajax({
        url: "http://www.sabadublin.com/blog/feed/", // RSS url
        success: function(msg){

            $('#latest_news').html('');

            $('item',msg).slice(0,4).each(function(){ // slice: get only first 3 posts
                var html = '<li>';
                html += '<a href="'+$('link', this).text()+'" title="">' + $('title', this).text() + '</a>';
                html += '</li>';
                $(html).appendTo('#latest_news');
            });
        },
        error: function (XMLHttpRequest, textStatus, errorThrown) {
            $('#latest_news').appendTo('<li>Ooops! It looks like the blog feed is unavailable at the moment.</li>');
        }
    });
});
