$(document).ready(function(){

	$(".short").toggle();
	$(".extend").toggle();
	$(".show_link").toggle();

	$(".show_link").click(function() {
		var id = $(this).attr("id").replace("_link2", "");
		id = id.replace("_link", "");
		$("#" + id + "_short").slideToggle();
		$("#" + id + "_extend").slideToggle();
		return false;
	});
	
	/**** Ouverture d'une nouvelle page si le domaine est différent ****/
	$("a").filter(function() {
		return this.hostname && this.hostname !== location.hostname;
	}).attr('target', '_blank');
	
});
