/*$(function() {
    $.ajax({
      type: "GET",
      url: "http://www.rsc.org/publishing/journals/rssfeed.asp?FeedType=LatestArticles&JournalCode=GC", //this site has a good newsfeed for green chem
      data: "xml",
      success: function(res) {
        //alert("success!");
        strRSS = '<h4>' + $('/rss/channel/title',rss).text() + '</h4>';
        $("#rss_feed").html(strRSS);
      }
      //XMLHttpRequest.open error; cross--domain access illegal! SOLUTION POSSIBLE:  Google Ajax Feed API
    });
  }
)*/

