// Master application js

$(function(){
	
	// External links
	$('a[href^="http://"]').attr({
		target: "_blank",
		title: "Opens this link in a new window"
	});
	
	// Make the background nice and dotty
	$("#body_mask").css({"height":$(window.body).height()});
	
	//sort out mailtos
	$('a[href^=mailto]').each(function()
			{
				//unmung
				var target = $(this);
				target.attr('href', target.attr('href').replace(/_AT_/, '@').replace(/_DOT_/g, '.')); 
				target.text(target.text().replace(/_AT_/, '@').replace(/_DOT_/g, '.')); 
					
			}); 
	
});
