<!--//--><![CDATA[//><!--

sfHover = function() {
	var sfEls = document.getElementById("nav2").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

//--><!]]>



<!--//--><![CDATA[//><!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  var popup = window.open(theURL,winName,features);
  if(popup.window.focus){popup.window.focus();}
}


function emailCheck (emailStr,lg) {
	/* The following variable tells the rest of the function whether or not
	to verify that the address ends in a two-letter country or well-known
	TLD.  1 means check it, 0 means don't. */
	var checkTLD=1;
	
	/* The following is the list of known TLDs that an e-mail address must end with. */
	var knownDomsPat=/^(com|net|org|edu|int|mil|gov|arpa|biz|aero|name|coop|info|pro|museum)$/;
	
	/* The following pattern is used to check if the entered e-mail address
	fits the user@domain format.  It also is used to separate the username
	from the domain. */
	var emailPat=/^(.+)@(.+)$/;
	
	/* The following string represents the pattern for matching all special
	characters.  We don't want to allow special characters in the address. 
	These characters include ( ) < > @ , ; : \ " . [ ] */
	var specialChars="\\(\\)><@,;:\\\\\\\"\\.\\[\\]";
	
	/* The following string represents the range of characters allowed in a 
	username or domainname.  It really states which chars aren't allowed.*/
	var validChars="\[^\\s" + specialChars + "\]";
	
	/* The following pattern applies if the "user" is a quoted string (in
	which case, there are no rules about which characters are allowed
	and which aren't; anything goes).  E.g. "jiminy cricket"@disney.com
	is a legal e-mail address. */
	var quotedUser="(\"[^\"]*\")";
	
	/* The following pattern applies for domains that are IP addresses,
	rather than symbolic names.  E.g. joe@[123.124.233.4] is a legal
	e-mail address. NOTE: The square brackets are required. */
	var ipDomainPat=/^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/;
	
	/* The following string represents an atom (basically a series of non-special characters.) */
	var atom=validChars + '+';
	
	/* The following string represents one word in the typical username.
	For example, in john.doe@somewhere.com, john and doe are words.
	Basically, a word is either an atom or quoted string. */
	var word="(" + atom + "|" + quotedUser + ")";
	
	// The following pattern describes the structure of the user
	var userPat=new RegExp("^" + word + "(\\." + word + ")*$");
	
	/* The following pattern describes the structure of a normal symbolic
	domain, as opposed to ipDomainPat, shown above. */
	var domainPat=new RegExp("^" + atom + "(\\." + atom +")*$");
	
	/* Finally, let's start trying to figure out if the supplied address is valid. */
	/* Begin with the coarse pattern to simply break up user@domain into
	different pieces that are easy to analyze. */
	var matchArray=emailStr.match(emailPat);
	
	if (matchArray==null) {
		/* Too many/few @'s or something; basically, this address doesn't
		even fit the general mould of a valid e-mail address. */
		if(lg=="FR"){
			alert("Votre adresse semble incorrecte, v�rifiez si vous avez saisi les caract�res @ ou '.'");
		} else {
			alert("Your email seems to be incorrect, check about @ ou '.'");
		}
		return false;
	}
	var user=matchArray[1];
	var domain=matchArray[2];
	
	// Start by checking that only basic ASCII characters are in the strings (0-127).	
	for (i=0; i<user.length; i++) {
		if (user.charCodeAt(i)>127) {
			if(lg=="FR"){
				alert("Le nom utilis� dans votre adresse email semble contenir des caract�res invalides.");
			} else {
				alert("You have invalid caracter in the name of your email.");
			}
			return false;
	   }
	}
	for (i=0; i<domain.length; i++) {
		if (domain.charCodeAt(i)>127) {
			if(lg=="FR"){
				alert("Le nom de domaine de votre adresse email contient des caract�res non valides.");
			} else {
				alert("You have invalid caracter in the domain of your email.");
			}
			return false;
	   }
	}
	
	// See if "user" is valid 
	if (user.match(userPat)==null) {
		// user is not valid
		if(lg=="FR"){
			alert("Le nom utilis� dans votre adresse email ne semble pas valide!");
		} else {
			alert("The name in your email seems to be incorrect");
		}
		return false;
	}
	
	/* if the e-mail address is at an IP address (as opposed to a symbolic
	host name) make sure the IP address is valid. */
	var IPArray=domain.match(ipDomainPat);
	if (IPArray!=null) {
		// this is an IP address
		for (var i=1;i<=4;i++) {
			if (IPArray[i]>255) {
				if(lg=="FR"){
					alert("L'adresse IP contenu dans votre email semble incorrecte");
				} else {
					alert("The IP adress you use in your email is incorrect");
				}
				return false;
		   }
		}
		return true;
	}
	
	// Domain is symbolic name.  Check if it's valid.
	 
	var atomPat=new RegExp("^" + atom + "$");
	var domArr=domain.split(".");
	var len=domArr.length;
	for (i=0;i<len;i++) {
		if (domArr[i].search(atomPat)==-1) {
			if(lg=="FR"){
				alert("Le nom de domaine de votre email ne semble pas valide");
			} else {
				alert("The domain name of your email is incorrect");
			}
			return false;
	   }
	}
	
	/* domain name seems valid, but now make sure that it ends in a
	known top-level domain (like com, edu, gov) or a two-letter word,
	representing country (uk, nl), and that there's a hostname preceding 
	the domain or country. */
	if (checkTLD && domArr[domArr.length-1].length!=2 && 
	domArr[domArr.length-1].search(knownDomsPat)==-1) {
	if(lg=="FR"){
		alert("La fin de votre email doit �tre un domaine connu, ou bien sur deux caract�res.");
	} else {
		alert("The end of your email must be in two caracters or an known domain");
	}
	return false;
	}
	
	// Make sure there's a host name preceding the domain.	
	if (len<2) {
		if(lg=="FR"){
			alert("Il n'y a pas de nom d'hote dans votre adresse email!");
		} else {
			alert("Yous email seems to be incorrect");
		}
		return false;
	}
	
	// If we've gotten this far, everything's valid!
	return true;
}


function displayComments()

{
	var comments = document.getElementById('comments-template');
	if(comments.style.display == "none")
	{
		comments.style.display = "block";
	}
	else
	{
		comments.style.display = "none";
	}

	return false;

}

function Ratp(elem_adresse,elem_ville){

	window.open('http://www.ratp.info/Proxi/proxi.php?Profil=PLAN_PERSO&exec=proxi&cmd=Plan&nom='+escape(elem_adresse)+' '+escape(elem_ville)+'&type=Adresse','ratp','toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=860px,height=700px')

}

function Velib(elem_adresse){
	window.open('http://www.velib.paris.fr/Trouver-une-station?recherche='+escape(elem_adresse),'vlib','toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=860px,height=700px')
}

function saveMail()
{
	var mail = $("#cac_mail").val();
	$.ajax(
	{
		type: "POST",
		url: "ajax.php",
		data: "a=insertMail&mail="+mail,
		success: function(msg){
			$("#cac_ajaxChange").html(msg);
	   }
	 });	
}

function ValInscription(supp){
		var user_civilite		= GetSelectedItem(document.formInscriptionMembre.user_civilite);
		var user_nom 			= document.formInscriptionMembre.user_nom;
		var user_prenom 		= document.formInscriptionMembre.user_prenom;
		var user_email 			= document.formInscriptionMembre.user_email;
		var user_confemail 		= document.formInscriptionMembre.user_confemail;
		var user_adresse1 		= document.formInscriptionMembre.user_adresse1;
		var user_adresse2 		= document.formInscriptionMembre.user_adresse2;
		var user_cp 			= document.formInscriptionMembre.user_cp;
		var user_ville 			= document.formInscriptionMembre.user_ville;
		var user_password 		= document.formInscriptionMembre.user_password;
		var user_confpassword 	= document.formInscriptionMembre.user_confpassword;
		var user_anniv_d		= document.formInscriptionMembre.user_anniv_d;
		var user_anniv_m		= document.formInscriptionMembre.user_anniv_m;
		var user_anniv_y		= document.formInscriptionMembre.user_anniv_y;
		var user_tel 			= document.formInscriptionMembre.user_tel;
		var user_login 			= document.formInscriptionMembre.user_login;
		var cgu					= document.formInscriptionMembre.cgu;
		var security_code		= document.formInscriptionMembre.security_code;
		

		if(user_login.value == ""){
			alert("Renseignez le champ pseudo");
			user_login.focus();
			return;
		}
		if(user_password.value == ""){
			alert("Renseignez le champ mot de passe");
			user_password.focus();
			return;
		}
		if(user_password.value.length < 6){
			alert("Le mot de passe doit faire 6 caractères minimum");
			user_password.focus();
			return;
		}
		if(user_confpassword.value == ""){
			alert("Renseignez le champ confirmation mot de passe");
			user_confpassword.focus();
			return;
		}
		if(user_confpassword.value != user_password.value){
			alert("Les mots de passe saisis ne correspondent pas. Veuillez les resaisir");
			user_password.focus();
			return;
		}
		
		if(!emailCheck(user_email.value,'FR')){
			user_email.focus();
			return;
		}
		if(!emailCheck(user_confemail.value,'FR')){
			user_confemail.focus();
			return;
		}
		if(user_email.value != user_confemail.value){
			alert("Les emails saisis ne correspondent pas. Veuillez les resaisir");
			user_email.focus();
			return;
		}
		if(security_code.value == ""){
			alert("Renseignez le champ de sécurité");
			security_code.focus();
			return;
		}

		if(cgu.checked == false){
			alert("Acceptez les conditions générales d'utilisation");
			return;
		}


		if(supp=="1"){
			if(user_civilite == ""){
				alert("Renseignez le champ civilité");
				return;
			}
			if(user_nom.value == ""){
				alert("Renseignez le champ nom");
				user_nom.focus();
				return;
			}
			if(user_prenom.value == ""){
				alert("Renseignez le champ prenom");
				user_prenom.focus();
				return;
			}
			
			if(user_adresse1.value == ""){
				alert("Renseignez le champ adresse");
				user_adresse1.focus();
				return;
			}
			if(user_cp.value == ""){
				alert("Renseignez le champ code postal");
				user_cp.focus();
				return;
			}
			if(user_ville.value == ""){
				alert("Renseignez le champ ville");
				user_ville.focus();
				return;
			}
			
			if( (user_anniv_d.value == "" || user_anniv_m.value == "" || user_anniv_y.value == "")  ){
				alert("Renseignez le champ date de naissance");
				user_anniv_d.focus();
				return;
			}
			if(user_tel.value == ""){
				alert("Renseignez le champ téléphone");
				user_tel.focus();
				return;
			}
		}
		
		document.formInscriptionMembre.submit();
 	
	}
	
function GetSelectedItem(elem)
{
	chosen = ""
	len = elem.length
	for (i = 0; i <len; i++)
	{
		if (elem[i].checked)
		{
			chosen = elem[i].value
		}
	}
	return chosen;
}


$(document).ready(function(){
		/*$("li.current-cat-parent").each(function(){
			$(this > a).addClass("on");
		});
		
		$("li.current-cat").each(function(){
			$(this > a).addClass("on");
		});*/
		
		if($("li.current-cat-parent > a").size()>0)
		{
			$("li.current-cat-parent > a").addClass('on');	
		}
		else
		{
			$("li.current-cat > a").addClass('on');
		}
});
//--><!]]>







