$(document).ready(function() {
  // can_close for "pop-up" type banners
  $('span.can_close').mouseenter(function(e) {
    if ($('#close_addon').size() == 0) {
      $(this).append('<span id="close_addon" style="display: none">close</span>');
      $('#close_addon').click(function(e) {
        $(this).parent().hide(300);
      });
    }
    $('#close_addon').show(300);
  });
  $('span.can_close').mouseleave(function(e) {
    $('#close_addon').hide(300);
  });

  // multi-page prettyPhotos
  $('a[href*=,]').each(function(i) {
    var images = $(this).attr('href').split(',');
    for (var j = 0; j < images.length; j++) {
      if (j == 0) {
        $(this).attr('href', images[j]);
        $(this).attr('rel', 'prettyPhoto[multipage' + i + ']');
      }
      else {
        $('body').append('<a href="' + images[j] + '" rel="prettyPhoto[multipage' + i + ']" style="display: none"></a>');
      }
    }
  });
  $(".main-banner a[href*=.jpg], .sub-banner a[href*=.jpg]").prettyPhoto();
});
