
function defilmage(){


repertoire="/images/partenaires/";
ima = Math.round((Math.random()*5)+1)

if (ima==1) {
document.getElementById('divimage').innerHTML = '<a href="http://www.aqualight-solution.com/" rel="nofollow" title="5% de remise chez Aqualight Solution"><img src="'+repertoire+'Aqualight-Solution.jpg" width="160px" height="90px"></a>';
}
else if (ima==2) {
document.getElementById('divimage').innerHTML = '<a href="http://www.aquaplante.fr/" rel="nofollow" title="10% de remise chez Aquaplante"><img src="'+repertoire+'aquaplante.jpg" width="160px" height="90px"></a>';
}
else if (ima==3) {
document.getElementById('divimage').innerHTML = '<a href="http://www.miniaqua77.com/" rel="nofollow" title="10% de remise Chez miniAqua77"><img src="'+repertoire+'miniaqua77.jpg" width="160px" height="90px"></a>';
}
else if (ima==4) {
document.getElementById('divimage').innerHTML = '<a href="http://www.cichlid-aqua.com" rel="nofollow" title="10% de remise Chez Cichlid Aqua"><img src="'+repertoire+'cichlid-aqua.jpg" width="160px" height="90px"></a>';
}
else if (ima==5) {
document.getElementById('divimage').innerHTML = '<a href="http://www.floraquatic.com/" rel="nofollow" title="10% de remise Chez Floraquatic"><img src="'+repertoire+'floraquatic.jpg" width="160px" height="90px"></a>';
}
else if (ima==6) {
document.getElementById('divimage').innerHTML = '<a href="http://www.aquanimal.com/" rel="nofollow" title="5% de remise chez Aquanimal"><img src="'+repertoire+'aquanimal.jpg" width="160px" height="90px"></a>';
}

setTimeout("defilmage()",2000)
return;
}

