$(document).ready(function(){

	/* Font size switcher (best nog uitbreiden met cookie storage) */
	// Reset Font Size
	$("#normal").click(function(){
		$('html').css('font-size', '100%');
		return false;
	});
	// Increase Font Size
	$("#bigger").click(function(){
		$('html').css('font-size', '120%');
		return false;
	});
	// Increase Font Size
	$("#biggest").click(function(){
		$('html').css('font-size', '140%');
		return false;
	});
	
	// Read more
	$("#read_more").click(function(){
		$('#read_more_div').slideToggle("slow");
		$("#read_more").hide();
		return false;
	});
	
	/* --------------------- JQuery Tools dependent functions -------------------- */
	/* collapsing/expanding layers */
	$("#accordion").tabs("#accordion div.pane", {initialIndex: -1, tabs: 'h5', effect: 'slide'});

});
