/* -----------------------------------------------------------------------------
	aaz.baggage.js - Fonctions javascript par défaut.
------------------------------------------------------------------------------*/
$(function() {
	var thisLangue=$('html').attr('lang');

	// Permet l'ouverture des liens dans une nouvelle fenêtre (pour conformité XHTML, utilisation de rel="blank" car target n'existe plus en XHTML)
	$('a').click(function(){
		if($(this).attr('rel') == '_blank'){
			window.open($(this).attr('href'));
			return false;
		}
	});

});

