//PLF-jejavascript.net/
var coeff4=3;//Coefficient de reduction
var larg4=424;//largeur maxi de l'image
var haut4=536;//hauteur maxi de l'image
var coeffinit4=coeff4;
function changer4() {
if (document.image4.width < larg4) {
coeff4 = coeff4-0.2;
document.image4.width = Math.round(larg4/coeff4);
document.image4.height = Math.round(haut4/coeff4);
chang4=window.setTimeout('changer4();',60);//vitesse de l'effet
}
else {window.clearTimeout(chang4);}
}
function initial4() {
if (document.image4.width > larg4/coeffinit4) {
window.clearTimeout(chang4);
coeff4 = coeff4+0.2;
document.image4.width = Math.round(larg4/coeff4);
document.image4.height = Math.round(haut4/coeff4);

initi4=window.setTimeout('initial4();',60);//vitesse de l'effet
}
else {window.clearTimeout(initi4);}
}