/* external links */
$(document).ready(function() {
	$("a").click(
		function() {
			var cls = $(this).attr('class');
			var href = $(this).attr('href');
			var a1 = href.split("quackfuzed.com");
			var a2 = href.split("localhost");
			if ( cls != "no-open" ) {
				if (a2 != href) {
					// do nothing
				} else if ( a1 == href ) {
					window.open(href, 'QuackFuzedOffsite');
					return false;
				}
			}
		}
	);
});
