$(document).ready(function() {

	/* Outbound links */
	$("a[href^=http]").each(
	    function(){
			if(this.href.indexOf(location.hostname) == -1) {
				$(this).attr({
					target: "_blank",
					title: this.title
				});
			}
		}
	);
	
	$('a.process-link').each(function() {
		var href = $(this).text();
		href = href.replace(' at ', '@');
		href = href.replace(' dot ', '.');
		
		$(this).text(href);
		$(this).attr('href', 'mailto:' + href);
	});
	
	$('#teasers a.page-link').each(function() {
		var href = $(this).attr('href');
		
		href = '#' + href.replace(/\//g, '');
		
		$(this).attr('href', href);
		
	});
});