jQuery(document).ready(function(){	
	
	jQuery('.arkea-product-thumbs a').click(function(){
		var src = jQuery(this).attr('href');
	
		jQuery('.arkea-product-image img').attr('src',src);
		jQuery(this).trigger('blur');
		return false;
	});
	
	
});

