(function($){
  // if firefox 3.5+, hide content till load (or 3 seconds) to prevent FOUT
  var d = document, e = d.documentElement, s = d.createElement('style');
  if (e.style.MozTransform === ''){ // gecko 1.9.1 inference
    s.textContent = 'body{visibility:hidden}';
    var r = document.getElementsByTagName('script')[0];
    r.parentNode.insertBefore(s, r);
    function f(){ s.parentNode && s.parentNode.removeChild(s); }
    addEventListener('load',f,false);
    setTimeout(f,3000); 
  }
})();


jQuery(function() {
	/* METTRE TOUS LES SCRIPTS POUR LE SITE ICI PLUTOT QUE DIRECTEMENT DANS LA PAGE! */
	
	
    /* ***************************************************************
        OUVERTURE DES LIENS EXTERNE DANS UN NOUVEAU TAB / WINDOW 
        Note : ajouter class="in" si vous voulez qu'il s'ouvre 
               dans la même fenêtre.
    *************************************************************** */
	jQuery('a[href^=http]:not(.in), a[href$=pdf]').attr({'target':'_blank'});
	
	$('#slideshow').innerfade({ 
		animationtype: 'fade', 
		speed: 'normal', 
		timeout: 3000, 
		type: 'sequence',
		containerheight: '181px',
		runningclass: 'innerfade',
		children: null
	});
	
	/* Validation du formulaire d'adhésion */
	$('#envoyer').click(function(){
				var valid = true;
			
				if (!$('#type-1').attr('checked') && !$('#type-2').attr('checked')) {
					valid = false;
					$('#val-type').show();
				}else $('#val-type').hide();
				
				if (!$('#titre-1').attr('checked') && !$('#titre-2').attr('checked') && !$('#titre-3').attr('checked') && !$('#titre-4').attr('checked')) {
					valid = false;
					$('#val-titre').show();
				}else $('#val-titre').hide();
				
				if ($('#nom').val() == "") {
					valid = false;
					$('#val-nom').show();
				}else $('#val-nom').hide();
				
				if ($('#adresse').val() == "") {
					valid = false;
					$('#val-adresse').show();
				}else $('#val-adresse').hide();
				
				if ($('#ville').val() == "") {
					valid = false;
					$('#val-ville').show();
				}else $('#val-ville').hide();
				
				if ($('#telephone').val() == "") {
					valid = false;
					$('#val-telephone').show();
				}else $('#val-telephone').hide();
				
				if ($('#courriel').val() == "") {
					valid = false;
					$('#val-courriel').show();
				}else $('#val-courriel').hide();
				
				if (!$('#comite-1').attr('checked') && !$('#comite-2').attr('checked')) {
					valid = false;
					$('#val-comite').show();
				}else $('#val-comite').hide();
				
				if (!$('#groupeautonome-1').attr('checked') && !$('#groupeautonome-2').attr('checked')) {
					valid = false;
					$('#val-groupeautonome').show();
				}else $('#val-groupeautonome').hide();
				
				if (!$('#femmesseulement-1').attr('checked') && !$('#femmesseulement-2').attr('checked')) {
					valid = false;
					$('#val-femmesseulement').show();
				}else $('#val-femmesseulement').hide();
				
				if ($('#femmesseulement-2').attr('checked')) {
					if (!$('#mixtecomite-1').attr('checked') && !$('#mixtecomite-2').attr('checked')) {
						valid = false;
						$('#val-mixtecomite').show();
					}else $('#val-mixtecomite').hide();
				
				}
				
				if (!$('#interventionsmauricie-1').attr('checked') && !$('#interventionsmauricie-2').attr('checked')) {
					valid = false;
					$('#val-interventionsmauricie').show();
				}else $('#val-interventionsmauricie').hide();
				
				
				if (!$('#autresorganismes-1').attr('checked') && !$('#autresorganismes-2').attr('checked')) {
					valid = false;
					$('#val-autresorganismes').show();
				}else $('#val-autresorganismes').hide();
				
				if ($('#autresorganismes-1').attr('checked')) {
					if ($('#autresorganismes-lesquels').val() == "") {
						valid = false;
						$('#val-autresorganismes-lesquels').show();
					}else $('#val-autresorganismes-lesquels').hide();
				}
				
				if ($('#autresorganismes-2').attr('checked')) $('#val-autresorganismes-lesquels').hide();
				
				if (!$('#adherezvous-1').attr('checked') && !$('#adherezvous-2').attr('checked')) {
					valid = false;
					$('#val-adherezvous').show();
				}else $('#val-adherezvous').hide();
				
				if ($('#objectifs').val() == "") {
					valid = false;
					$('#val-objectifs').show();
				}else $('#val-objectifs').hide();
				
				//fichiers si nouveau compte
				if ($('#type-1').attr("checked") && !$('#titre-3').attr("checked")) {
					if ($('#procverb').val() == "") {
						valid = false;
						$('#val-procverb').show();
					}else $('#val-procverb').hide();
				
					if ($('#charte').val() == "") {
						valid = false;
						$('#val-charte').show();
					}else $('#val-charte').hide();
					
					if ($('#ca').val() == "") {
						valid = false;
						$('#val-ca').show();
					}else $('#val-ca').hide();
	
					if ($('#cotisation').val() == "") {
						valid = false;
						$('#val-cotisation').show();
					}else $('#val-cotisation').hide();

				}else {
					$('#val-procverb').hide();
					$('#val-charte').hide();
					$('#val-ca').hide();
					$('#val-cotisation').hide();
				}
				
				if (!valid) return false;
				$('#notabot').val("1");
				$('#frmMembre')[0].submit();
			});
	
});
