$("document").ready(function(){

	$("input[name=amount-option]").click(function(){
		
		if($(this).attr("checked"))
		{
			amount=parseInt($(this).attr("value"));
			if(amount>0)
				$("#tmplvar_var_amount").attr("value",amount);	
			
		}
		
	});
	
	$("#xeuro").change(function(){ 
		if($(this).attr("checked"))
			$("#amount-else").focus();
	});
	
	$("#amount-else").change(function(){

		$("#xeuro").attr("checked",true);
		amount=parseInt($(this).attr("value"));
		if(amount>0)
			$("#tmplvar_var_amount").attr("value",amount);
	});
	
	$("label[for=xeuro]").click(function(){
		
		$("#amount-else").select();
		
	});
	
	amount=$("#tmplvar_var_amount").attr("value");
	opt=$("#"+amount+"euro");
	if(opt.attr("name"))
		opt.attr("checked",true);
	else
	{
		$("#amount-else").attr("value",amount);
		$("#xeuro").attr("checked",true);
	}
		
	
});	
