/*
author:   Michael Eichelsdoerfer, www.michael-eichelsdoerfer.de
version:  1.2
date:     2009-01-17
client:   MFA+ Film, www-mfa-film.de
about:    global JavaScript file;
          - link control (new windows via jQuery)
*/

$(document).ready(function(){

	// new windows for outbound links
	$("a[href^=http]").each(function(){
		if (window.location.hostname != this.hostname){
			$(this).attr("target","_blank");
		}
	});

	// new windows for certain file suffixes
	$("a[href$='.pdf'], a[href$='.PDF']").attr("target","_blank");

});
