function init() {
	// unobtrusive JS class
	document.body.className += " loading hasJS";
}

$(function() {
	// unobtrusive JS class
	$(window).load(function() {
		var body = $(document.body);
		body.addClass('domReady');
		body.removeClass('loading');
	})
	
	// external links
	$("a[rel='external']").each(function() {
		var link = $(this);
		link .click(function() {
			return !window.open(link.attr('href'));
		});
	});
	
	Cufon.replace('#NavPrimary .notice p', { fontFamily: 'Helvetica Neue' });
});

