function setFontSize(size) {
	/*$("body").css('font-size',size+"px");*/
	var cook = document.cookie;
	var a = new Date();
	a = new Date(a.getTime() +1000*60*60*24*365);
	document.cookie = 'fontsize='+size+';expires='+ a.toGMTString()+';path=/;domain=furore-verlag.de;';

	window.location.reload();

	return;
	
}

$(document).ready(function(){

	a = document.cookie;
	
	if(a.indexOf(';') != -1)
		{cookiewert = a.substring(a.indexOf('fontsize=')+9, a.indexOf('fontsize=')+11);}
	else
		{cookiewert = a.substring(a.indexOf('fontsize=')+9, a.indexOf('fontsize=')+11);}

	

	if(cookiewert == '12' || cookiewert == '14' || cookiewert == '16')
	{
		$("body").css('font-size',cookiewert+"px");
	}
	
	$("a#login[rel]").overlay({mask: '#ccc',top: '40%'});
	
	$('a#uparrow').click(function() {
		$('html,body').animate({scrollTop: 0}, 600);
		return false;
	});
	
	$('#suche form').submit(function () {
		window.location.href = "http://furore-verlag.de/suche/"+$('#suche input[type=text]').val()+"/";
		return false;
	});
	
});



