		$(function() {
		/*---- change op selecteren order of aantal ----*/
			$(".toolTip").mouseenter(function(){
				$(this).find(".toolTipContent").css({display: "block", zIndex: "2000"});
			});
			$(".toolTip").mouseleave(function(){
				$(this).find(".toolTipContent").css({display: "none", zIndex: "0"});
			});	
		
		})