﻿$(document).ready(function() {
  refreshCalendar();
});

  function refreshCalendar()
  {
    $('a[name^="date"]').click(function() {
      $('ul.exp-planning-popup').fadeOut('150'); ;
      $('ul[id="' + $(this).attr('name') + '"]').css('display', 'block');
      //$('ul[id="' + $(this).attr('name') + '"]').css('top', $(this).offsetTop + 18);
      //$('ul[id="' + $(this).attr('name') + '"]').css('left', $(this).offsetLeft + 3);
      $('ul[id="' + $(this).attr('name') + '"]').css('position', 'absolute');
      return false;
    });
    $('ul[id^="date"]').mouseleave(function() {
      $(this).fadeOut('200');
    });
  }
