$(document).ready(function() {

	// I'm on the outside
	hostname = window.location.hostname
	$("a[href^=http]")
		.not("a[href*='" + hostname + "']")
		.addClass('link external')
		.attr('target', '_blank');

	$('.accordion .question').click(function() {
		$(this).next().toggle('slow');
		return false;
	}).next().hide();
});