//var groesse = 0.9;
function finalize()
{
////wenn cookie vorhanden, entsprechende schriftgröße laden
//if (einjahrcookie.getSubValue("fontsize") > 0)
//	{
//		document.body.style.fontSize = einjahrcookie.getSubValue("fontsize") + "em";
//	}
//else
//	{
//		document.body.style.fontSize = groesse + "em";
//	}
	
	
// wenn cookie vorhanden, entsprechende stylesheets laden
if (einjahrcookie.getSubValue("style") == "kontrast")
	{		
		init_style(aktuelle_section, "kontrast");		
		einjahrcookie.setSubValue("style", "kontrast");
		//einjahrcookie.setSubValue("section", aktuelle_section);
	}		
else
	{
		init_style(aktuelle_section, "standard");		
		einjahrcookie.setSubValue("style", "standard");
		//einjahrcookie.setSubValue("section", aktuelle_section);
	}
}