function init() {
	//mit aktuellem Datum ausrechnen
	plus();
}

function plus() {
		//lesen
	aktuell = document.getElementById('kosten').firstChild.nodeValue;
		
		//berechnen und formatieren
	aktuell = aktuell.replace(/\./g, "");
	aktuell = aktuell.replace(/,/, ".");
	aktuell = parseFloat(aktuell) + 0.0634195;
	aktuell = number_format(aktuell, 2, ",", ".");
	
		//schreiben
	cost.firstChild.nodeValue = aktuell;
	
		//loop
	window.setTimeout("plus()", 100);

}
			
function number_format(numeral, decimals, dec_point, thousands_sep) {
	var neu = "";

	// Runden
	var f = Math.pow(10, decimals);
	numeral = "" + parseInt(numeral * f + (.5 * (numeral > 0 ? 1: -1))) / f;
	
	// Komma ermittlen
	var idx = numeral.indexOf('.');
	
	// fehlende Nullen einfŸgen
	if(idx != -1) {
	numeral += (idx == -1 ? '.': '') + f.toString().substring(1);
	}
	
	// Nachkommastellen ermittlen
	idx = numeral.indexOf('.');
	if(idx == -1) idx = numeral.length;
	else neu = dec_point + numeral.substr(idx + 1, decimals);
	
	// Tausendertrennzeichen
	while(idx > 0) {
	if(idx - 3 > 0)
	neu = thousands_sep + numeral.substring(idx - 3, idx) + neu;
	else
	neu = numeral.substring(0, idx) + neu;
	idx -= 3;
	}
	return neu;
}
