// Menu lavalamp
$(function() {
    $("#Menu").lavaLamp({
		fx: "backout",
		speed: 700,
		click: function(event, menuItem) { return true; }
	});
});

/* Formulaire de contact 
************************* */
function TestContact() {
	var msg = "";

	antispamconfirm=document.getElementById('antispamconfirm').value;
	if (antispamconfirm=="") msg += JVS_CODE_VIDE+"\n";
	else if (antispamconfirm.toLowerCase()!=document.getElementById('antispam').value) msg += JVS_CODE+"\n";
	
	if (document.getElementById('nom').value=="") msg += JVS_NONOM+"\n";
	
	if (document.getElementById('mail').value=="") msg += JVS_NOMAIL+"\n";

	if (document.getElementById('text').value=="") msg += JVS_NOMSG+"\n";
	
	if (msg == "") return(true);
	else	{
		alert(msg);
		return(false);
	}
}


