$(function(){
	$('.lightbox a').lightBox();
	
	// maak alle footercolommen even hoog
	$('.footerBox').height(
		Math.max.apply(
			$('.footerBox'),
			$('.footerBox').map(
				function(i,e){
					return $(e).height();
				}
			).get()
		)
	);
	
	checkNormalHeight();
	
	$("#cavFuelMini option:first").text("Alle brandstoffen");
	$("#cavFuel option:first").text("Alle brandstoffen");
	
});

// maak de left en right evenhoog met een minimum van 650px
function checkNormalHeight() {
	var hl = $(".mainLeftNormal").outerHeight(true);
	var hr = $(".mainRightNormal").outerHeight(true);
	var nh = 0;
	
	if (hl < 650 && hr < 650) {
		nh = 650;
	} else if (hl < hr) {
		nh = hr;	
	} else {
		nh = hl;	
	}
	
	$(".mainLeftNormal").height(nh);
	$(".mainRightNormal").height(nh+25);
}

