$(document).ready(function() {

	// Enable external popup window links
	// http://jaspan.com/external-links-in-new-window-without-target
	$("a[@rel='external']").addClass("external");
	$("a[@rel='external']").click(function() {
		window.open($(this).attr('href'));
		return false;
	});

	// Help popups
	$("a.help_link").click(function() {
		var help_url = $(this).attr('href');
		window.open(help_url,'layover_help_window','width=800,height=600,resizable=yes,scrollbars=yes,toolbar=yes,location=yes,menubar=no,status=yes');
		return false;
	});
	$("a.help_link").after('<em><strong>?</strong></em>');

	// OpenX Tracking Links
	$('a.openx_link').mouseup(function () {
		var bannerid = this.id;
		if (bannerid.match(/^bannerid:[0-9]+$/)) {
			bannerid = bannerid.replace(/^bannerid:/,'');
			jQuery.get('/ads/adclick.php?bannerid=' + bannerid);
		}

		return true;
	});
});
