// Initializes User Scripts:

$(document).ready(function() {
  
  // Select Search Text when focused:
  $('input.txtSearch').mouseup(function() {
    this.select();
  });
  
  // Start Swapping the endorsements feed:
  //swapEndorsement();
  
  $('#stayConnected li a').click(function() {
    window.open($(this).attr("href"),'window2', '');
    return false;
  });
  
});