$(document).ready(function(){

	$('.add_another_file_input').show();

	// add click handler to add icon
	$('.add_another_file_input').click(function(){
		// get input html
		var html = $(this).parents('.file').html();
		// add to form
		$('.file:last').after( '<div class="file hide">'+html+'</div>' );
		// hide the add icon
		$('.file:last a.add_another_file_input').hide();
		// fade in the input
		$('.file:last').fadeIn().removeClass('hide');

	return false;
	});
	

	$('.add_another_amount_input').show();

	// add click handler to add icon
	$('.add_another_amount_input').click(function(){
		// get input html
		var html = $(this).parents('.amount').html();
		// add to form
		$('.amount:last').after( '<div class="amount hide">'+html+'</div>' );
		// hide the add icon
		$('.amount:last a.add_another_amount_input').hide();
		// fade in the input
		$('.amount:last').fadeIn().removeClass('hide');

	return false;
	});
	
	$('.add_another_telephone_input').show();

	// add click handler to add icon
	$('.add_another_telephone_input').click(function(){
		// get input html
		var html = $(this).parents('.telephone').html();
		// add to form
		$('.telephone:last').after( '<div class="telephone hide">'+html+'</div>' );
		// hide the add icon
		$('.telephone:last a.add_another_telephone_input').hide();
		// fade in the input
		$('.telephone:last').fadeIn().removeClass('hide');

	return false;
	});

});
