$(function() {

	// de-obfuscate email addresses
	$('.e').each(function() {
 		var $this = $(this);
 		var t = $this.text();
		$this.text(t.replace('[at]','@').replace(/\[dot\]/g,'.'));
		$(this).attr('href','mailto:'+$this.text());
	});

	// twitterish
	$("#twitter").getTwitter({
		userName: "otwaysopera",
		numTweets: 3,
		loaderText: "Loading ...",
		slideIn: true,
		slideDuration: 750,
		showHeading: true,
		headingText: 'Follow Opera in the Otways on Twitter (<a href="http://twitter.com/otwaysopera">@otwaysopera</a>):',
		showProfileLink: false,
		showTimestamp: true
	});
	
	// external links
	$('a[rel="external"]').each(function() {
		$(this).attr('target', '_blank');
	});

});

