﻿$(function() {
	/* Links that open in new windows */
	$("a.newwin").bind("click", function(e) {
		if (!e.ctrlKey) {
			window.open(this.href);
			return false;
		}
		return true;
	});
});
