// JavaScript Document

Cufon.replace('.SuperGroteskC-CdBd, div.billet div.content h1', { fontFamily: 'SuperGroteskC-CdBd' });
Cufon.replace('.SuperGroteskC-BdLF, div.billet div.content h2', { fontFamily: 'SuperGroteskC-BdLF' });
Cufon.replace('div.billet div.content label.gray', { fontFamily: 'SuperGroteskA-Bd' });

$(document).ready(function(){
	windowResize();
	
	$(window).resize(function() {
		windowResize();
	});
	
	$("div.formulierItem input:checkbox").click(function() {
		$(this).next("label").toggleClass("checked");
	});
});

function windowResize() {
	$("div.contentWrapper").css("height", "");
	if ($("div.contentWrapper").height() < ($(document).height() - 72)) $("div.contentWrapper").height($(document).height() - 72);
}