function changeSize(i){
	if(document.body.style.fontSize==""){
		var n = '100%';
	}else{
		var n = document.body.style.fontSize;
	}
	return Number(n.replace(/%/,""))+i;
}
function incrementTxt(){	
	document.body.style.fontSize = changeSize(10)+'%';
}
function decrementTxt(){	
	document.body.style.fontSize = changeSize(-10)+'%'
}
function rss(){
	alert('Hallo RSS');
}