$(document).ready( function() {
    $('a[href^="http://"]').live('click', function(event) {
		if($(this).attr('rel') != 'internal') {
			return !window.open(this.href);
		}
    });

	$("a[rel='external']").live('click', function() { 
		return !window.open(this.href);
	});
});
