$(document).ready(function()
	{
		//ajouter class external aux liens d'un autre domaine
		$("a").filter(function() 
			{
				return this.hostname && this.hostname != location.hostname;
			})
			.addClass("external")
			.attr({ target: "_blank" });
		//appliquer aux pdf
		$("a[href$=.pdf]").click(function(){return !window.open(this.href);});
	});

