$(document).ready (function() {
        // change the url as below when put it on live
        var url = "http://www.kingarthurflour.com/blog/feed/";
        // comment this url when put it on live
        // var url = "http://stage/recipes2008/blog.xml";
        var limitation = 4;
        $.get(url, function(xml) {
                var i = 0;
                $(xml).find("item").each(function() {
                        if (i ++ > (limitation - 1)) {return false;}
                        $("#blog" + i).attr("href", $(this).find("link").text()).html($(this).find("title").text());
                });
        });
});
