// Initialisation

/* initialisation du DOM */
$().ready(function() {

	/*$("#rcont").corner({
		tl: { radius: 8 },
		tr: { radius: 8 },
		bl: { radius: 8 },
		br: { radius: 8 },
		antiAlias: true,
		autoPad: true
	});
	$(".steps").corner({
		tl: { radius: 4 },
		tr: { radius: 4 },
		bl: { radius: 4 },
		br: { radius: 4 },
		antiAlias: true,
		autoPad: true
	});
	$("#parrainage").corner({
		tl: { radius: 8 },
		tr: { radius: 8 },
		bl: { radius: 8 },
		br: { radius: 8 },
		antiAlias: true,
		autoPad: false
	});*/

	$("#clicopen").click( function (){
		$("#postFAQ").slideToggle("slow");
	});

	$("a.pop").attr("target", "_blank");
	$("a.popnopic").attr("target", "_blank");
	$("a").attr("title", "");

	//installation du lightbox sur les images/liens du contenu
	$("a.lightboxed[href$='.jpg']").attr("rel", "prettyPhoto");
	$("a.lightboxed[href$='.jpeg']").attr("rel", "prettyPhoto");
	$("a.lightboxed[href$='.png']").attr("rel", "prettyPhoto");
	$("a.lightboxed[href$='.gif']").attr("rel", "prettyPhoto");
	prettyPhoto.init();

});
