$(document).ready(function(){
	
	/*
	Any links with rel="external" attribute will open in new window.
	*/
	$('A[rel="external"]').click( function() {
		window.open( $(this).attr('href') );
		return false;
	});
	
	$('.tweets a').click( function() {
		window.open( $(this).attr('href') );
		return false;
	});

});
