$(document).ready(function(){
  $("#rightBar").height($("#contentArea").height());
  
  $("#navigation .link:not(.current)").hover(function(){
  $(this).addClass("hover");
  },function(){
  $(this).removeClass("hover");
  });
  
  $("input.txtSearch").focus(function(){
  $(this).select();
  /*if($(this).val() == "Search..."){
    $(this).val('');
    }*/
  });
  /*
  $("input.txtSearch").blur(function(){
  if($(this).val() == ''){
    $(this).val("Search...");
  }
  });
  */
  $('div#slides').cycle({
    timeout:    8000
  });
  
  // Hides list item images if no src is defined:
  $('img.listItemImage').each(function() {
    if ($(this).attr('src') == '') {
      $(this).hide();
    }
  });
    // Opens up blank links in new window.
    $('.lnkBlank').click(function() {
        window.open($(this).attr('href'), 'newWindow', '');
        return false;
    });

});
