window.addEvent('domready', function() {

						 
initImageZoom();

var show = function(){ 

var miniUrl = this.getChildren().getProperty('src');
miniUrl = miniUrl.toString();

var mediumUrl = miniUrl.replace("mini", "big");//provisoire///
var bigUrl = miniUrl.replace("mini", "big");
var maxUrl = bigUrl.replace("/pa/big", "/big");

maxUrl = maxUrl.replace(".JPG", ".jpg");

	$('bloc_produit_photo_principale').set('html','<a href="" rel="imagezoom"><img src="cat/big.jpg" /></a>'); 

	$('bloc_produit_photo_principale').getChildren().setProperty('href', maxUrl);	

	$('bloc_produit_photo_principale').getChildren()[0].getChildren().setProperty('src', mediumUrl);

initImageZoom();	

} // this refers to the Element.


if($('thumbs')) $$('.thumb2').addEvent('mouseover', show);

});
