<!--
//PLF-http://www.jejavascript.net/
var coeff=4;//Coefficient de reduction
var larg=450;//largeur maxi de l'image
var haut=283;//hauteur maxi de l'image
function changerx() {
if (document.imagex.width < larg) {
coeff = coeff-0.2;
document.imagex.width = Math.round(larg/coeff);
document.imagex.height = Math.round(haut/coeff);
chang=window.setTimeout('changerx();',100);//vitesse de l'effet
}
else {window.clearTimeout(chang);}
}
function initialx() {
if (document.imagex.width > larg/4) {
window.clearTimeout(chang);
coeff = coeff+0.2;
document.imagex.width = Math.round(larg/coeff);
document.imagex.height = Math.round(haut/coeff);
initi=window.setTimeout('initialx();',100);//vitesse de l'effet
}
else {window.clearTimeout(initi);}
}
//-->
