

//var headerImages = new Array('header1.jpg','header2.jpg','header3.jpg', 'header4.jpg');

$(document).ready(function() {

  // menu drop-downs
  /*
  $("#leftcol li:not(.active)").hover(function() {
    $(this).find('ul').slideDown(300);
  }, function() {
    $(this).find('ul').slideUp(200);
  })
  */
  
 
  // search box text
  $("#sitesearch_input").focus(function() {
    if ($(this).val() == 'Search') {
      $(this).val('');
    }
  })
  $("#sitesearch_input").blur(function() {
    if ($(this).val() == '') {
      $(this).val('Search');
    }
  })

});
