window.addEvent('domready', function(){
									 
	$$('.divAddtobasket ').each(function(a) {
		// wrapper for main image
		var imgMainImage = a.getElement('.BasketImage');
		// array of thumbnails
		var imgThumbnails = a.getElements('.ulBasketThumbnails li a');
		imgThumbnails.addEvent('mouseenter',function(){
			imgMainImage.setProperty('href', this.get('href')); 
			imgMainImage.setProperty('title', this.get('title')); 
			imgMainImage.getElement('img').setProperty('src', this.get('rev')); 
		});
	});
	
});
