$(function() {

	$("#sub-tekst-links a").click(function () { 
		  $('#wissel-tekst').html($(this).attr('rel'));
		  $('#wissel-kop').html($(this).text());
		  $(this).parent().find('a.actief').removeClass('actief');
		  $(this).addClass('actief');
		  return false;
	});

	var Hoogte = $(window).height()-$("#header").height() + "px";

	if($.browser.msie && jQuery.browser.version == 7.0){
		$("#content").css({"min-height":Hoogte, "_height":Hoogte});			
	}
	else{
		$("#content").css({"min-height":Hoogte, "height":Hoogte});
	}
});