
var num=0, num1=0, num2=0, num3=0, num4=0, num5=0, nbim=0;
function changer() {
switch(nbim){
case 1 :
if (num == 0) {
num = 1;
document.image.src = "images/le-color-fresh1.jpg";// grande image
document.image.width = 400;
document.image.height = 164;
}
else {
num = 0;
document.image.src = "images/le-color-fresh1.jpg";// petite image
document.image.width = 150;
document.image.height = 61;
}
break;
case 2 :
if (num2 == 0) {
num2 = 1;
document.image2.src = "images/intendant.jpg";// grande image
document.image2.width = 435;
document.image2.height = 382;
}
else {
num2 = 0;
document.image2.src = "images/intendant.jpg";// petite image
document.image2.width = 150;
document.image2.height = 132;
}
break;
case 3 :
if (num3 == 0) {
num3 = 1;
document.image3.src = "images/scores.jpg";// grande image
document.image3.width = 480;
document.image3.height = 123;
}
else {
num3 = 0;
document.image3.src = "images/scores.jpg";// petite image
document.image3.width = 150;
document.image3.height = 38;
}
break;
case 4 :
if (num4 == 0) {
num4 = 1;
document.image4.src = "images/pave.jpg";// grande image
document.image4.width = 289;
document.image4.height = 118;
}
else {
num4 = 0;
document.image4.src = "images/pave.jpg";// petite image
document.image4.width = 150;
document.image4.height = 61;
}
break;
case 5 :
if (num5 == 0) {
num5 = 1;
document.image5.src = "images/votre.jpg";// grande image
document.image5.width = 494;
document.image5.height = 388;
}
else {
num5 = 0;
document.image5.src = "images/votre.jpg";// petite image
document.image5.width = 150;
document.image5.height = 118;
}
break;
}
}

