$().ready(function(){	var options = {       // resizeLgImages:     true,        displayNav:         true,        handleOversize:		"drag",        handleUnsupported:  'remove',        keysClose:          ['c', 27], // c or esc        overlayColor:		"#000000",        overlayOpacity:		0.8,		skipSetup:			true    };    Shadowbox.init(options);	$(".liste_base").nansPager({element:"ul",numElement:2,pagerPosition:"top",pagerClass:"nav",pagerType:"fleche",pagerPosIn:false});	//$('#txt_intro').nansTextOverlay({limit:230,more:"<b></b>lire la suite",close:"<b>X</b> fermer",closeWidth:55});	var diapo1 = $("#diapo_img").nansGallery({widthVignette:0,multiple:true,conteneur:".liste_0",effect:'fade'});	$(".bottom .liste_base a.liste_0").addClass("current");	$(".bottom .liste_base a").click(function(e)	{		e.preventDefault();		var $this = $(this);		$(".bottom .liste_base a").removeClass("current");		var $class = $this.attr("class");		$this.addClass("current");		diapo1.changeListe("."+$class);	});	$(".bt_module").click(function(e)	{		var $content = $(".description_module").html();		e.preventDefault();		Shadowbox.open({			content:    $content,			player:     "html",			title:      "",			height:     460,			width:      1000		});	});});
