$('document').ready(function(){
	//If javascript is available remove the nojs class from the body
	if($('body').hasClass('no-js')){
		$('body').removeClass('no-js');
	}
	
	//Open external links in a new window
	$('a.external').each(function(){
		$(this).bind('click',function(e){
			e.preventDefault();
			var url = $(this).attr('href');
			window.open(url);
		});
	});	
	
});
