function price2img(price,place){
	
		var price_snippet = "";
	
		komma_pos = price.indexOf(",");
		var p_big = price.slice(0,komma_pos);
		var p_small = price.slice(komma_pos+1,komma_pos+3);	
		
		var snippet_prefix = '<span class="number_';
		var snippet_suffix = '">&nbsp;</span>';
		
		//big
		for(var i=0; i<p_big.length; i++){
			price_snippet = price_snippet.concat(snippet_prefix+p_big.charAt(i)+' big ');
			if(i==0){price_snippet = price_snippet.concat(' first ');}
			price_snippet = price_snippet.concat(snippet_suffix);
		}
		
		//komma
		price_snippet = price_snippet.concat(snippet_prefix+"k small"+snippet_suffix);
		
		//small		
		for(var i=0; i<p_small.length; i++){
			price_snippet = price_snippet.concat(snippet_prefix+p_small.charAt(i)+" small "+ snippet_suffix);
		}
		
		//currency
		price_snippet = price_snippet.concat(snippet_prefix+"e small "+snippet_suffix);
		
		document.getElementById(place).innerHTML= price_snippet;
}
