var menu = 'off';
function moveMenu(){
	if(menu == 'off'){
		$('#menutop').animate({top:'0px'},
							   {duration:750,
							    specialEasing: {top: 'easeOutCirc'}});
		menu = 'on';
	}else{
		$('#menutop').animate({top:'-111px'},
							   {duration:750,
							    specialEasing: {top: 'easeOutBack'}});
		menu = 'off';
	}
}
function movefirst(){
		$('#menutop').animate({top:'0px'},{duration:750,specialEasing: {top: 'easeOutCirc'}}).delay(800).animate({top:'-111px'},{duration:750,specialEasing: {top: 'easeOutBack'}});
}
function test_email (my_email) {
	var new_string = new String(my_email);
	if(!new_string.match('^[-_\.0-9a-zA-Z]{1,}@[-_\.0-9a-zA-Z]{1,}[\.][0-9a-zA-Z]{2,}$')){
		return false;
	}else{
		return true;
	}
}
function verifMail(){
	if(test_email(document.getElementById('newsletter').value) == true){
		return true;
	}else{
		$('#errorMail').html('<span class="red">Invalid mail!</span>');
		return false;
	}
}
function checkFormulaire(){
	first_name = document.getElementById('first_name').value;
	last_name  = document.getElementById('last_name').value;
	compagny   = document.getElementById('compagny_organisation').value;
	activity   = document.getElementById('activity').value;
	address    = document.getElementById('address').value;
	zip_code   = document.getElementById('zip_code').value;
	city 	   = document.getElementById('city').value;
	phone 	   = document.getElementById('phone').value;
	email 	   = document.getElementById('email').value;
	
	if(first_name != '' && last_name != '' && compagny != '' && activity != '' && address != '' && zip_code != '' && city != '' && first_name != '' && phone != '' && email != ''){	
		if(test_email(email) == true){
			return true;
		}else{
			alert('Invalid Mail');
			return false;
		}
	}else{
		alert("Fields marked with ' * ' are obligatory");
		return false;
	}
}
