﻿jQuery.fn.center = function() {
  this.css("position", "absolute");
  this.css("top", (($jQuery(window).height() - this.outerHeight()) / 2) + $jQuery(window).scrollTop() + "px");
  this.css("left", (($jQuery(window).width() - this.outerWidth()) / 2) + $jQuery(window).scrollLeft() + "px");
  return this;
};

$jQuery(document).ready(function () {
  $jQuery(".EventCalendarSpotContent .Event a").click(function (event) {
    event.preventDefault();
    nautload2div(event.target.href, "EventDetails");
    $jQuery(".EventCalendarSpot .EventDetailsContainer").center().fadeIn("fast");
  });

  $jQuery(".EventCalendarSpot .Close").click(function (event) {
    event.preventDefault();
    $jQuery(".EventCalendarSpot .EventDetailsContainer").hide();
  });
});
