$(function() {
	$('a.lightbox').lightBox();
});

i1 = new Image;
i1.src = "images/index2.png";
i2 = new Image;
i2.src = "images/produits2.png";
i3 = new Image;
i3.src = "images/contact2.png";
function overMenu(id){
	document.getElementById('menu'+id).src="images/"+id+"2.png";
}

function outMenu(id){
	document.getElementById('menu'+id).src="images/"+id+"1.png";
}
function validerContact()
{
	var form = document.formContact;
	var valid = 1;
	var message = '';
	for(var i=0; i<arguments.length; i++){
		if(document.getElementById(arguments[i]).value == '')
		{
			message += "- "+arguments[i]+" \n";
			valid = 0;
		}
	}
	
	if(valid==1){
		var phone = new RegExp(/^0[1-689]([\.|\-|\s]*[0-9]{2}){4}$/);
		if(!phone.test(form.telephone.value)){
			alert('Le numéro de téléphone est incorrect.');
			return false;
		}
		else{
			return true;
		}
	}
	else {
		alert("Les champs suivants sont obligatoires :\n\n"+message);
		return false;
	}
}
function effacerchamps()
{
	var form = document.formContact;
	var valid = 1;
	var message = '';
	for(var i=0; i<arguments.length; i++){
		document.getElementById(arguments[i]).value = '';
	}
}

function afficherImage(idproduit, image, w, h, margintop, marginleft)
{
	document.getElementById('image'+idproduit).src=image;
	document.getElementById('image'+idproduit).height=h;
	document.getElementById('image'+idproduit).width=w;
	document.getElementById('image'+idproduit).style.marginTop=margintop+'px';
	document.getElementById('image'+idproduit).style.marginLeft=marginleft+'px';
	document.getElementById('lien'+idproduit).href=image;
}

