$(function() {
	$("#menu").lavaLamp({
		fx: "backout", 
		speed: 700
		/*click: function(event, menuItem) {
			return false;
		}*/
	});
	
	$( "#news" ).accessNews({
		headline : "Superbes news",
		speed : "slow",
		slideBy : 1
	});
	
	var deroul = 0;
	$("#acces_rapide .ar").click(function() {
		if(deroul == 0) {
			$("#ar_inline").fadeOut(500);
			$("#acces_rapide .ar").css('background-position','0 -23px');
			deroul = 1;
		} else {
			$("#ar_inline").fadeIn(500);
			$("#acces_rapide .ar").css('background-position','0 0');
			deroul = 0;
		}
	});
	
	$('.pop').fancybox({
		hideOnContentClick : false
	}) ;
	$('a.box').fancybox() ;
	$("a.popcontact").fancybox({ 'frameWidth': 600, 'frameHeight': 500, 'overlayShow': true }); 
});
