
// basic set up.
$(document).ready(function() {

	// attach a target to all the external links.
	$('a[rel*=external]').click( function() {
		window.open(this.href);
		return false;
	});

	// hide any elements that are supposed to not be there.
	$('[jsHidden*=true]').each( function(index, value) {
		$(value).hide();
	});

});
