
// Require that Prototype is available
if ($) {
	$(document).ready(function() {
		// Links!
		$("a").each(function() {
			var matchResult = this.href.match(/(lahospitalcareers|mahospitalcareers|mnhospitaljobs|mshospitaljobs|nchospitaljobs).com/i);
			
			// Determine whether the link is off-site or not
			if (!matchResult) {
				if (this.href.substr(0, 1) != "#" && this.href.substr(0, 11).toLowerCase() != "javascript:") {
					//alert("offsite: " + this.href);
					$(this).click(function() {
						window.open(this.href, "externalWindow" + (new Date()).getTime());
						
						return false;
					});
				}
			}
		});
	});
}
