$(document).ready(function() {

/*  ===== Increase/Decrease Top Header  ===== */
  
  $('#nav ul').wrap("<p></p>");    
  
  $('#menu').hover(
  
    function() {
    
      $('#top #menu').css({'height':'137px'});
      
      $('#top .mid').animate({ 
        height: "137px" 
      }, 
      { queue:false, duration:"normal" }
      );
      
      $('#top .mid').css({'overflow':'visible'});
      $('body').css('background-position','center 137px');
      $('#nav p').show();
      
    },
  
    function() {

      $('#top #menu').css({'height':'74px'});

      $('#top .mid').animate({ 
        height: "74px" 
      },
      { queue:false, duration:"normal" }
      );
      
      $('#top .mid').css({'overflow':'visible'});
      $('body').css('background-position','center 74px');
      $('p',this).hide();
      
    }
  );
  
  $('#widgetized1 .theLabBlog h2 a:first-child').remove();
  $('#widgetized1 .theLabBlog h2').addClass('png');
  $('#widgetized1 .theLabBlog li span.rss-date').prepend('Posted ');
  $('#four_blocks .action_block:last').css('margin','0');
  $('#f_nav li:last a').css('border','0');
    
});
