        $(document).ready(function() {		   
			$('a.preview-product').each(function(){
				var content = '<img src="' + $(this).attr('href') + '" />';
				$(this).qtip({
					content: content,
					position: 'center', // Set its position
         			hide: {fixed: true},
         			show: { delay: 0, solo: true },
					style: { border: { width: 2, radius: 5, color: '#F0F0F0'},width:275}
				});						  
			});
			
			var _images = ['images/products/mpm500_large.jpg','images/products/mpm380_large.jpg'];
			$.each(_images,function(e) {
			$(new Image()).load(function() {
			//alert($(this).attr('src') + 'has loaded!');
			}).attr('src',this);
			});
			
			// Verwijder link, zodat hier niet op geklikt kan worden.
			$("a.preview-product").removeAttr('href');

        });