$(function(){
	
	$('#amount').keyup(function(){
		this.value = this.value.replace(/[^0-9,\.]/,'').replace(/\./,',');
	});
	$('#waehrungsrechner').submit(function(e){
		e.preventDefault();
		$('#result').fadeTo(0,0);
		$.getJSON('/waehrungsrechner/json/?'+$(this).serialize(),function(o){
			$('#result').html('<h2><span>'+o.result+' '+o.dest+'</span><br /> 1 '+o.base+' = '+o.rate+' '+o.dest+'</h2>').fadeTo('slow', 1);
		});
	});
	
});

