/*!
 * @copyright 2011-Present Advanced Care Solutions, Inc.
 * @author Christopher Rahauiser <crahauiser@acs-web.com>
 */
jQuery.noConflict();
(function($) {
  $('#banner').slideshow({
    timerDuration: 10000
  });
  $('a.newwin').click(function(event) {
    event.preventDefault();
    var win = window.open(this.href);
    win && win.focus && win.focus();
  });
})(jQuery);
