/** START LETTERGROOTTE **/
function klein() {
	var expdate = new Date (); 
	expdate.setTime(expdate.getTime() + 1000 * 60 * 60 * 24 * 365); 
	setCookie("gcntekstgrootte","8pt",expdate);
	document.getElementById("container").style.fontSize = '8pt';
}

function groot() {
	var expdate = new Date (); 
	expdate.setTime(expdate.getTime() + 1000 * 60 * 60 * 24 * 365); 
	setCookie("gcntekstgrootte","12pt",expdate);
	document.getElementById("container").style.fontSize = '12pt';
}

function updateText(value){
	document.getElementById("container").style.fontSize = value;
}

function setCookie(name, value, expires){
	if (!expires) expires = new Date(); 
	document.cookie = name + "=" + escape(value) + "; expires=" + expires.toGMTString() + "; path=/";
}

function getCookie(name){
	var cookies = document.cookie;

	if (cookies.indexOf(name) != -1){
		var startpos = cookies.indexOf(name)+name.length+1;
		var endpos = cookies.indexOf(";",startpos)-1;
		if (endpos == -2) endpos = cookies.length;
		return unescape(cookies.substring(startpos,endpos));
	}else{
		return false; 
	}
}
/** EINDE LETTERGROOTTE **/

/** START FAQ JQUERY **/
jQuery().ready(function(){ jQuery('#faq').accordion({ active: true, alwaysOpen: false }); });
/** EINDE FAQ JQUERY **/
