// -------------------------------------------------------------------
// Utility Functions		


// -------------------------------------------------------------------
// external Links 

function externalLinks() { 
	$("a").each(function(){
		if ($(this).attr("href") && $(this).attr("rel") == "external"){ 
			$(this).attr({ target: "_blank" });
			}
	});
}

		

// -------------------------------------------------------------------

$(document).ready(function() {				
			
	externalLinks();
});

// -------------------------------------------------------------------
