window.addEvent('domready', function(){
									 
	$$('.biaBasket').each(function(a) {
		// wrapper for main image
		var imgMainImage = a.getElement('.biaBasketImage');
		// array of thumbnails
		var imgThumbnails = a.getElements('.biaBasketThumbnail');
		imgThumbnails.addEvent('mouseenter',function(){
			imgMainImage.setProperty('href', this.get('href')); 
			imgMainImage.setProperty('title', this.get('title')); 
			imgMainImage.getElement('img').setProperty('src', this.get('rev')); 
		});
	});
	
	$$('.divWebProduct').each(function(a) {
		// wrapper for main image
		var imgMainImage = a.getElement('.aWebProductMainImage');
		if ($chk(imgMainImage)) {
		// array of thumbnails
		var imgThumbnails = a.getElements('.aWebProductThumbnail');
		imgThumbnails.addEvent('mouseenter',function(){
			imgMainImage.setProperty('href', this.get('href')); 
			imgMainImage.setProperty('title', this.get('title')); 
			imgMainImage.getElement('img').setProperty('src', this.get('rev')); 
		});
		};
	});
	
});
