// JavaScript Document
$(document).ready(function() {
	$(".help").colorbox({width:"780px", height:"600px", iframe:true});	
	$(".popup").colorbox({width:"350px", height:"400px", iframe:true});	
	$(".contactform").colorbox({width:"650px", height:"700px", iframe:true});	
	$(".confidentiel").colorbox({width:"750px", height:"650px", iframe:true});	
  	$('#navLeft li').click(function() {							
		wichLink = $(this).children('a');
		window.location.href=(wichLink.attr("href"));
	});
  	$('#languageZone').click(function() {							
		wichLink = $(this).children('a');
		window.location.href=(wichLink.attr("href"));
	});

    $('#clientSlide').cycle({
		fx: 'fade'
	});
    $('#photoAccueil').cycle({
		fx: 'fade',
		timeout: 8000
	});
    $('#enteteDirection').cycle({
		fx: 'fade',
		timeout: 10000
	});
    $('#citationZone').cycle({
		fx: 'fade',
		timeout: 10000
	});
    $('#citationLargeZone').cycle({
		fx: 'fade',
		timeout: 8000
	});
	$('#mystereQuestions a').click(function() {
	hideAllAnswers();
	$(this).css('color', '#ec8615');
	wichAnswer = ($(this).attr("name"));
	$('#'+wichAnswer).show();
	});
});

function activateMenu(wichItem){
	$(wichItem).attr("class","active");
}
function hideAllAnswers(){
	$('.reponse').hide();
	$('#mystereQuestions a').css('color', '#564841');
	  
}
<!--
function clearDefault(el) {
if (el.defaultValue==el.value) el.value = ""
}

function changefield(){
            $('#fakepassword').hide();
            $('#password').show();
            $('#password').focus();
}


function voide(){
	
}
// -->
