/*!
 * @copyright 2010-Present Advanced Care Solutions
 * @author Christopher Rahauiser <crahauiser@acs-web.com>
 */
(function($) {
  $('a.newwin').click(function(event) {
    event.preventDefault();
    var win = window.open(this.href);
    if (win && win.focus) {
      win.focus();
    }
  });
  $('.side-events-container').newsEvents();
})(jQuery);
