function goSetHeight(variabele){
// zet hoogte van product overzicht
var maximaHeight = 0;
  jQuery(variabele).each(function(){
							   
		nuHeight = jQuery(this).height();
		//alert(nuHeight);
		
		if(nuHeight > maximaHeight){
			maximaHeight = jQuery(this).height();
		}
		
	});
  
  //alert(maximaHeight);
  jQuery(variabele).each(function(){
		jQuery(this).height(maximaHeight);
	});
};
