$(document).ready(function(){
    $.jGFeed('http://makedatamakesense.com/myspace/event/?url=http%3A%2F%2Fwww.myspace.com%2Flydiaglanvillemusicinc%26format%3Drss%26style%3Dno-summary',
    function(feeds){
      // Check for errors
      if(!feeds){
        // there was an error
        return false;
      }
      // do whatever you want with feeds here
      for(var i=0; i<10; i++){
        var entry = feeds.entries[i];
        $('#gigsInner').append(
            '<div class="gigsItem">'
            + '<p><a href="'
            + entry.link
            +'">'
            + entry.title
            + '</a></p>'
            + '<p>'
            + entry.content
            + '</p>'
            + '</div>'
        );
      }
    }, 10);
});