/*///////////////////////////////////*/
/* script pour liens externes */
/*///////////////////////////////////*/
	jQuery(document).ready(function(){
		jQuery('a[rel="external"], a[href^=http]').each(function(){
			if(this.href.indexOf(location.hostname) == -1) { 
				jQuery(this).attr('target', '_blank');
			}
		});
	})
/*///////////////////////////////////*/
