$(function() {
   $('a.gallery').lightBox({
	imageLoading: 'images/lightbox/loading.gif',
	imageBtnClose: 'images/lightbox/close.gif',
	imageBtnPrev: 'images/lightbox/prev.gif',
	imageBtnNext: 'images/lightbox/next.gif',
	containerResizeSpeed: 300,
	txtImage: 'Foto',
	txtOf: ' van '
   });
   
   
   $('.product-img-zoom').hide();
   
   $('.product-img a').hover(function(){
   	
   		
   		$(this).parent().prev().fadeIn('fast');
   },function(){
   		$(this).parent().prev().hide();
   })
   
});

