$(document).ready(function(){
	
	var cfg = {
		calendrier: { 
			over: "click1",
			click: "calendrier"
		},
		docu: { 
			over: "click2",
			click: "docu"
		},
		contact: { 
			over: "click3",
			click: "contact"
		}
	};
	
	var swf = null;
			
	$(document).ready(function(){
		$('.home #Content .ejweb_section .openCloseLnk').click(clickSound).mouseover(overSound);
	});
	
	function clickSound() {
		if (!$(this).data("isOpen")) return;
		
		var id = cfg[$(this).attr('id')].click;
		swf.flashPlay(id);
	}
	
	function overSound() {
		var id = cfg[$(this).attr('id')].over;
		swf.flashPlay(id);
	}
	
	var flashvars = {};
	var params = {};
	params.allowScriptAccess = "always";
	var attributes = { id: "SMContainer", name: "SMContainer" };
	
	swfobject.embedSWF("/swf/lodho_flash/LODHO_SoundManager.swf", "SMContainer", "0", "0", "10.0.0", "inc/expressInstall.swf", flashvars, params, attributes, function(e) { swf = e.ref; });
				
});
