
$(document).ready(function() {
  $('[confirm]').bind('click', function(e) {
    var msg = $(this).attr('confirm');
    if (!msg.length) return true;
    var result = confirm(msg);

    if (!result) {
      e.preventDefault();
      return false;
    }
    else return true;
  });

  $('.info_bar').prepend('<img src="http://images.stuffireallywant.com/close.png" class="close_button" style="display: none;"/>');
  $('.info_bar .close_button').fadeIn(1000);

  $('.info_bar .close_button').bind('click', function(e) {
    $(this).closest('.info_bar').slideUp();
  });
});


