$(document).ready(function()
{                
  //*************************************************************************
  //Created By:   Jeff Richmond
  //Created Date: 2008.10.08
  //Section Name: New window links
  //Description:  sets up newWin links to open in a new window.
  //*************************************************************************
  $('.newWin').each( function()
  {
    //add a notice to the title attribute
    if (this.title == "") { this.title = "(new window)"; }
    else { this.title = this.title + " (new window)"; }
    
    //add the click event
    $(this).click( function(e)
    {
      if(!e)e = window.event;
      if(e.shiftKey || e.ctrlKey || e.altKey) return;
      window.open(this.href);
      return false;
    });
  });//End newWin Links 
});    