// Initialize the Scripts for this site.

$(document).ready(function() {
  
  
  // Opens up links with this class in new window.
  $(".lnkBlank[href*='http']").click(function() {
    window.open($(this).attr('href'), 'newWindow', '');
    return false;
  });
  
  // Select the text in the search box:
  $('input.txtSearch').focus(function() {
    $(this).select();
  });
  
  // Hides list item images if no src is defined:
  $('img.listItemImage').each(function() {
    if ($(this).attr('src') == '') {
      $(this).hide();
    }
  });

});
