/* Declare a namespace for the site */
var Site = window.Site || {};

/* Create a closure to maintain scope of the '$' and remain compatible with other frameworks. */
(function($) {

	$(function() {
	});

	$(window).bind("load", function() {
		$('a').each(function(){
			if (this.hostname !== location.hostname) {
				$(this).attr({
					target: "_blank",
					title: this.href + " (externer Link, öffnet sich in einem neuen Fenster)"
				});
			}
		});
		
	});
	
})(jQuery);
