$(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('.input').html();
		// add to form
		$('.file:last').after( '<div class="input 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;
	});
});
