$(document).ready(function(){
	
	// SET HEIHGT CONTENT BLOCK
	
	// left block
	var heightContent 	= $("#leftColumn").outerHeight(true);
	
	// left block h1 height
	var heightContentH1 = $("#leftColumn h1").outerHeight(true);
	
	// right block
	var heightBlock		= $("#rightColumn").outerHeight(true);
	
	// right block
	var heightBlockH1	= $("#rightColumn h1").outerHeight(true);
	
	// als het linker block groter is dan het rechter block
	if(heightBlock > heightContent){
		
		// als de h1 tags van zowel links als rechts even hoog zijn
		if(heightContentH1 == heightBlockH1)
			$("#leftColumn #leftContent").height(heightBlock - 96);
		
	}
	
});
