/* Author: Thomas Krüger, atnexxt.de */

$(function($) {

	// -=============
	// = Hyperlinks 
	// -=============
	$('a').click(function() {
	  $(this).blur();
	});

	// open external links in new window
	$('a[href*="http://"]:not([href*="' + location.hostname + '"])').attr('target', '_blank');
	
	//news-Backlink
	$('.news-single-backlink a').attr('href', '').click(function() {
		parent.history.back(); 
		return false;
	});

});(jQuery);




