jQuery(function($) {
	$('input').click(function(){
		$(this).select();
	});

	$('.intend').hide();
	$('#de .intend').show();
	
	$('fieldset.versandkosten').click(function() {
		$(this).find('.intend').toggle();
	});
	
});