jQuery(document).ready(function()
{
	SetExternalLinks();
});

function SetExternalLinks(){
	/*
	Purpose: checks all <a>'s in the doc, if it has a rel attribute of 'external', sets to open in new window
	usage: <a href="http://www.google.com" rel="external">Google</a>
	*/
	
	$('a[rel=external]').click(function(){ window.open(this.href); return false; });
	
}

