$(function() {
	// any link with the .new_window class opens in new window
	$('a.new_window').live('click', function(){
	  window.open(this.href);
	  return false;
	})
	
	// ampersand styling
  $("div,span,a,strong,em,label,dl,dd,dt,li,h1,h2,h3,h4,h5,h6", document.body).filter(":contains('&')").contents().each(function(){
    if( this.nodeType == 3 ) {
      $(this).replaceWith( this.nodeValue.replace( /&/g, "<span class='amp'>&</span>" ) )
    }
  })

})
