$(document).ready(function() {
	var anchors = $('a');
	var currentSite = window.location.host;
	
	$('a[href^="http://"]:not(:has(img))').addClass('external_link');
	$('a[href^="https://"]:not(:has(img))').addClass('external_link');
	$('a[href^="http://"]:not([href*="wein-saborondo.de"])').attr({
			target: "_blank"
	});
	$('a[href^="https://"]:not([href*="wein-saborondo.de"])').attr({
			target: "_blank"
	});
	$('a[href$=".pdf"]').attr({
			target: "_blank"
	});
});

