function loadSlideshow(){$("#small-quickview li:eq(3)").trigger("onclick")
}function change_picture(B){var C=$("#small-quickview li:eq("+(B-1)+") input:first").attr("value");
var D=$("#small-quickview li:eq("+(B-1)+") input:last").attr("value");
document.getElementById("big-quickview").style.backgroundImage="url("+C+")";
for(var A=1;
A<10;
A++){document.getElementById("image"+A).style.borderWidth="0px";
document.getElementById("image"+A).style.width="90px";
document.getElementById("image"+A).style.height="75px";
if(B==A){document.getElementById("image"+A).style.borderWidth="2px";
if(isIE6=/msie|MSIE 6/.test(navigator.userAgent)){document.getElementById("image"+A).style.width="90px";
document.getElementById("image"+A).style.height="75px"
}else{document.getElementById("image"+A).style.width="86px";
document.getElementById("image"+A).style.height="71px"
}document.getElementById("caption-texte").innerHTML=D;
document.getElementById("smallnumber").value=A
}}}function next_picture(A){small=document.getElementById("smallnumber").value;
if(A==0){newpic=new Number(small)-1;
if(newpic<1){newpic=9
}}else{if(A==1){newpic=new Number(small)+1;
if(newpic>9){newpic=1
}}}$("#small-quickview li:eq("+(newpic-1)+")").trigger("onclick")
};