/* TVDP: Functie die de wrapper bijschaald omdat het design lastig uitkomst in IE / FF */
$(document).ready(function() {
	/* TVDP: Resizer */
	var b = navigator.userAgent.toLowerCase();
	// Figure out what browser is being used
	jQuery.browser = {
		safari: /webkit/.test(b),
		opera: /opera/.test(b),
		msie: /msie/.test(b) && !/opera/.test(b),
		msie6: /msie 6.0/.test(b) && !/opera/.test(b),
		mozilla: /mozilla/.test(b) && !/(compatible|webkit)/.test(b)
	};
	if (jQuery.browser.msie6) {
		$("#footer").css('margin-top','-10px')
	} else {
		if ($('.subContent').height()) {
			if ($('.subContent').height() < 600) {
				$("#footer").css('margin-top', 0)
			} else {
				$("#footer").css('top', $('.subContent').height())
			}
		} else {
			if ($('#homeContent').height() < 600) {
				$("#footer").css('top', 600)
			} else {
				$("#footer").css('margin-top', $('#homeContent').height() - 350)
			}
		}
	}
	/* TVDP: Knop om te annuleren */
	$('#annuleerKnop').click(function() {
		history.go(-1)
	})
})
