$(document).ready(function() {
   // makes styling easier
   $('ul').each(function() {
   $(this).find('li:last-child').addClass('last');
   $(this).find('li:first-child').addClass('first');
   });
   $('.post:last, .event:last').addClass('last');
   // clear and restore search input
   $('input.clickClear').focus(function() {
      startText = $(this).val();
      $(this).val('');
   });
   $('input.clickClear').blur(function() {
      blurText = $(this).val();
      if (blurText == '') {
         $(this).val(startText);
      };
   });
   $('a.external').attr("target", "_blank");
   if ($('#subnav').length !=0) {
      var subnavLen = $('#subnav').html().length;
      if (subnavLen <=1) {
         $('#subnav').remove();
      };
   };
});

