/*!
 * 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 = title + "<BR>" + results;  
    });  
    $("#container").html(results);  
});  
  
}  