
jQuery(document).ready(function() {
	jQuery('.styleswitch').click(function()
	{
		switchStylestyle(this.getAttribute("rel"));
		
		jQuery('.styleswitch').removeClass("active");
		jQuery(this).addClass("active");
		
		return false;
	});
	
	var c = readCookie('style');
	if (c) switchStylestyle(c);
	if (c) {
		jQuery('.'+c).addClass("active");
	} else {
		jQuery('.normal').addClass("active");
	}
	
	
	
	jQuery('.print').click(function() 
	{
		print();
	});
	

	vergoedingenoverzicht.init();
});

// voor vergoedingenoverzicht 2009
function setSWFHeight(iHeight, sContainer) {
	try {
		jQuery('#'+sContainer).height(parseInt(iHeight));
	} catch(e) {}
}

