
jQuery(document).ready(function() {
	// JavaScript for opening links in a new window.
	$('a.ce-new-window').click(function() {
		window.open(this.href);
		return false;
	});

	$('a.ce-new-window-small').click(function() {
		// Doesn't work in IE unless the second argument is an empty string :(
		window.open(this.href, "", "height=600,width=800,menubar=yes,toolbar=yes,status=yes,resizable=yes,scrollbars=yes,location=yes");
		return false;
	});
});
