  $(document).ready(function(){
    $.getJSON("http://events.greenforall.org/recoveryactions/events/index.json?per_page=7&sort[upcoming]&callback=?",
        function(data){
        
           var infoHTML=' ';
           
          $.each(data, function(i,item){
               infoHTML+='<p>' + '<strong' + '<a href=http://events.greenforall.org/recoveryactions/events/show' + '/' + item.id + '>' + item.name  + '</a>' + '</strong>';
               infoHTML+='<p>' + item.city + ', ' + item.state  + '<br />';
               infoHTML+=item.segmented_date.month + '/' + item.segmented_date.day + '/' + '09' + '<br />' + '<hr>';
           });
          
          $('#events_upcoming').html(infoHTML);
          
        });
  });
