	$(function() {		
		$("input:file").each(function(){
			$(this).wrap("<div class='fileUploader'></div>");	
			$(this).before("<input type='text' class='fileBrowse' disabled='disabled'>");
			$(this).change(function(){
				var browse = $(this).attr('value');
				$('.fileUploader').children().filter('.fileBrowse').val(browse);
			});
		});
	});	