﻿	jQuery(window).bind('load', function(){
	// set every "a" tag a target attribute, which has a rel="external"
	jQuery('a[rel=external]').each(
		function() {
			$(this).attr('target', '_blank');
		}
	);
});

