$(document).ready(function () {
	//window.location.host
	$("a[href^='http']:not([href*='svmc.se'])").each(function() {  
		var text_link = $(this).text();
		var url = $(this).attr('href');
		var found = $(this).find('img');
		if (text_link && url && found.length == 0) {       
		  $(this).attr("target", "_blank");
		  $(this).addClass("external");
		}
	})
});
