jQuery(document).ready(function() {
	$(document).ready(function() {
		$('input[type=file]').each(function(){
			$(this).addClass('file').addClass('hidden');
			$(this).parent().append($('<div class="fakefile" />').append($('<input type="text" style="background-image: none;"/>').attr('id',$(this).attr('id')+'__fake')));
 
			$('#'+$(this).attr('id')+'__fake').val($(this).val());;

			$(this).bind('change', function() {
				$('#'+$(this).attr('id')+'__fake').val($(this).val());;
			});
			$(this).bind('mouseout', function() {
				$('#'+$(this).attr('id')+'__fake').val($(this).val());;
			});
		});
	});
});

