var imgOn;
function hoogte($img) {
 	$hoogte = $(window).height();
	$images = $img;
	imgOn = $img;
	
	if($images == 'TRUE') {
		$hoogte = $hoogte-270;
	} else {
		$hoogte = $hoogte-161;
	}
 	$('#content_inner').css({'height' : $hoogte});
	$('#content_inner').addClass('flexscroll');
}

$(function() {
	
	$("#images span").hide();
	$("#images a").hover(function() {
	
		$("span", this).show();
	
	}, function() {
		
		$("span", this).hide();
	
	});
	
	$(window).resize(function() {
	
		hoogte(imgOn);
	
	});

});
