
var num=0, num1=0, num2=0, num3=0, num4=0, nbim=0;
function changer() {
switch(nbim){
case 1 :
if (num == 0) {
num = 1;
document.image1.src = "images/chiffre_13.jpg";// grande image
document.image1.width = 400;
document.image1.height = 124;
}
else {
num = 0;
document.image1.src = "images/chiffre_13.jpg";// petite image
document.image1.width = 100;
document.image1.height = 31;
}
break;
case 2 :
if (num2 == 0) {
num2 = 1;
document.image2.src = "images/full.jpg";// grande image
document.image2.width = 400;
document.image2.height = 299;
}
else {
num2 = 0;
document.image2.src = "images/full.jpg";// petite image
document.image2.width = 100;
document.image2.height = 75;
}
break;
case 3 :
if (num3 == 0) {
num3 = 1;
document.image3.src = "images/etoiles_d_or.jpg";// grande image
document.image3.width = 400;
document.image3.height = 299;
}
else {
num3 = 0;
document.image3.src = "images/etoiles_d_or.jpg";// petite image
document.image3.width = 100;
document.image3.height = 75;
}
break;
case 4 :
if (num4 == 0) {
num4 = 1;
document.image4.src = "images/bleu.jpg";// grande image
document.image4.width = 400;
document.image4.height = 299;
}
else {
num4 = 0;
document.image4.src = "images/bleu.jpg";// petite image
document.image4.width = 100;
document.image4.height = 75;
}
break;
}
}
