$(document).ready(function() {
	/**
		put js for all sites of all 4 eilbote domains here.
		Use local.js for domain specific js.
		Individual js has to be included via a new redaxo template or via rex_register_extension
	*/
	
	/* open pdfs in new window */
	$("a[href$=pdf]").each(
	   function(){
	      $(this).attr('target', '_blank');
	});
	$("a[href^=http]").each(
	   function(){
		  if(this.href.indexOf(location.hostname) == -1) { 
	      $(this).attr('target', '_blank');
	    }
	});
	/* remove last border from footer links */
	$('#footer li a:last').css("border","0 none");
	
	
});
