$(document).ready(function(){
  $('#eventspon a').click(function(e) {
    var url = $(this).attr('href');
    $('#SelectSponsor').load(url);
    e.preventDefault();
  })
});
$(document).ready(function() {
  $('#hideButton').click(function(){
    $('#disclaimer').hide();
  });
});

