$(document).ready(function(){ 

$('#footer-switcher').toggle(function(){
$('#topFoot').animate({top:'46'});
$(this).animate({top:'33'}
,  function() {
$(this).addClass('off');
}
);

}, function() {
$(this).animate({top:'135px'});
$('#topFoot').animate({top:'170'});
$(this).removeClass('off');
}); 


$("#calendar div.close").click(
  function () {
    $('#overlay, .modalWindow').hide();
  });
  
  
$("#monthSelect div.toggler").hover(
  function () {
    $('#monthSelect div.list').show();
  });

  $("#monthSelect div.list").mouseleave(
  function () {
    $(this).hide();
  });
  
})
