/// <reference path="~/scripts/jquery-1.3.2-vsdoc.js" />

$(document).ready(function() {
	// set new window functionality for all external links
	$("a.external").click(function(event) {
		event.preventDefault();
		
		var newWindow = window.open($(this).attr("href"));
		newWindow.focus();
	});
});
