/* -----------------------------------------------------------------------------
	aaz.stc.js - Fonctions javascript par défaut.
------------------------------------------------------------------------------*/
$(function() {

	var thisLangue=$('html').attr('lang');

	/* -----------------------------------------------------------------------------
		Liens dans une nouvelle fenêtre
	------------------------------------------------------------------------------*/
	$('a').click(function(){
		if($(this).attr('rel') == '_blank'){
			window.open($(this).attr('href'));
			return false;
		}
	});
});
