/*!
 * http://www.reynoldsftw.com
 *
 * Created by Steve Reynolds
 */

$(document).ready(function() {
    getFavorites();
});

function getFavorites()
{
    var results = "";
    $.get("getFavorites.php",  function(xml){
        $('status',xml).each(function(i){
            var title = $(this).find("text").text();
            results = results + title + "<BR>";
        });
        $("#container").html(results);
    });
}