$(document).ready(function(){
	//PNG Fix
	$(document).pngFix();
	//lien externe
	//Scroll Bars
	$('.list ul').jScrollPane({showArrows:true})
	//Infos Intox
	$('.infos_intox').betaslide();
	//LightBox
	$.betalightbox();
	//Text Plus
	initTextPlus();
	//History back
	initHistoryBack();
	//Links Absolute
	initLinksAbsolute();
	//Bloc Search
	initSearch();
	//Frise chronologique
	initSlideShow();
	//Resize
	var img = $('.center .visuel img');
	if(img.length>0 && !jQuery.support.opacity){
		img.css({maxWidth:'none'});
		var width = img.attr('width');
		img.css({maxWidth:''});
		var height = img.height();
		var heightResize = 260*height/width;
		img.css({height:heightResize+'px'});
	}
});
