$(document).ready(function() {

 // for the calendar help
  $('p#hidemecal').hide();
 // shows and hides and toggles the slickbox on click  
  $('#showboxcal').click(function() {
    $('#hidemecal').toggle(400);
    $('#showboxcal').slideUp();
    return false;
  });

	$('.postthumbdiv').append('<span class="hover"></span>').each(function () {
	  var $span = $('> span.hover', this).css('opacity', 1);
	  $('.post').hover(function () {
	    $span.stop().fadeTo(500, 0);
	  }, function () {
	    $span.stop().fadeTo(500, 1);
	  });
	});

  //for the sermon browser
  $('div.hider:eq(0) > h6').hide();  
  $('div.hider:eq(0) > h5').click(function() {
    $(this).next().next().next().slideToggle('fast');
  });


});
