// initialise plugins
$(document).ready(function(){
	jQuery('ul.sf-menu').superfish({animation: {height:'show'},delay:500});
	//
	var hoogte = document.documentElement.clientHeight-220;
	$("#content").css("min-height",hoogte);
	//alert(hoogte);
	if (!/*@cc_on!@*/0) return;

	var all = document.getElementsByTagName('*'), i = all.length;
	while (i--) {
		// adding a class match just to show the difference
		if (all[i].className.match(/fix/) && all[i].scrollHeight > all[i].offsetHeight) {
			all[i].style['overflowX'] = 'hidden';
		}
	}
});
$(window).resize(function(){
	var hoogte = document.documentElement.clientHeight-220;
	$("#content").css("min-height",hoogte);
});