// menuSlider JS

$(document).ready(function(){
	
	// set the #nav display to none, to close the menu on document load.
	$('#nav').css({'display': 'none'});
	
	$('#nav_bottom a').click(function() {
		if($('#nav').attr('class') == 'open') {
			$('#nav').slideUp(1000);
			$('#nav').toggleClass('open');
		} else {
			$('#nav').slideDown(1000);
			$('#nav').toggleClass('open');			
		}
	});
	
	// code to open the submenus on the internal pages
	$('#accordion').hoverAccordion({
      activateitem: '1',
      speed: 'fast'
    });
    
    // Validate the Members Account Number on the Members Page Form
	$(".form_4 form").submit(function(){
   		var exp = /^[0-9]{6}$/;
		var inputData = $('#input-4-ligne_6').attr('value');
		if(!inputData.match(exp)){
			alert('The Member Account Number has to be 6 numerical characters!');
			$('#input-4-ligne_6').focus();
			return false;
		} 
	});
	
});
