$( function() {
  // *** Wordpress is stupid.  This theme doesnt allow custom menus so I just replaced the text with line ;)
  $('.Menuright li:nth-child(2) a').text('Home');
  $('.Menuright li:last-child').hide();
  $('.Menuright li:nth-child(8)').hide();
  
  // *** first and last for the calendar header
  $('#calendar_wrap thead th:first-child').addClass('first');
  $('#calendar_wrap thead th:last-child').addClass('last');
  
  // *** first and last for the calendar footer
  $('#calendar_wrap tfoot td:first-child').addClass('first');
  $('#calendar_wrap tfoot td:last-child').addClass('last');
  
  // *** events list changes
  $('.eventList .eventWrap:last-child .eventContent').css('background', 'none');
  $('.eventContent strong').hide();
  
  // *** photo gallery rollove
  $('#homeGallery .ngg-imagebrowser-nav').hide();
  $('#homeGallery').mouseenter(function(){
      $('#homeGallery .ngg-imagebrowser-nav').fadeIn();
  });
  $('#homeGallery').mouseleave(function(){
      $('#homeGallery .ngg-imagebrowser-nav').fadeOut();
  });

});
