$(document).ready(function(){
 
	/* ajoute un target _blank au lien avec une classe external */
	$("a[@rel='external']")
	.attr({ title: "s'ouvre dans une nouvelle fen\u00EAtre" })
	.click(function() { window.open($(this).attr('href')); return false; });
	/*--------------------*/
	
	$('.unsubscribe').corner("15px");
  
  
  /* insertion éléments flash */
  if(document.getElementById('page-home')){
  	$("#nav-bar").each(
  		function(){
  			var Intro = new SWFObject("/flash/menu.swf", "swf_menu", "485", "540", "8", "#ffffff",true);
  			Intro.addParam('wmode', 'transparent');
  			Intro.write("nav-bar");
  		}
  	);
  }
	/*--------------------*/
  
	
});