// Display the RSS Feeds - Needs to be dynamic - ajaxy
function feeds(wrap)
 {
  var a = "";

  $.ajax(
   {
    type: "GET",
    url: "/showFeeds.php",
    async: false,
    success: function(data, status)
     {
      a = data;
     } 
    });
  return a;
 }
