/* some basic rf-f functions
*/

/*
 * Greps all <a> tags with attribute rel="external" and
 * inserts a target="_blank" into the DOM tree.
 */
$(document).ready(function(){
	$("a[rel^='external']").attr('target','_blank');
});
