$(function() {
	if($(document).height() > $("body").height()){
		$("body").css({
			height: $(document).height()
		});
	}
	
	$("a:not([href*='"+window.location.host+"']):not([href*='#']):not([href^='mailto'])").attr("target", "_blank");
	
	$('a[href^="mailto"]').mailto();
		
	Cufon.replace("div.breif p");
});

jQuery.fn.mailto = function() {
	return this.each(function(){
		var email = $(this).html().replace(/\s*\(.+\)\s*/, "@");
		$(this).before('<a href="mailto:' + email + '" rel="nofollow" title="Email ' + email + '">' + email + '</a>').remove();
	});
};
