$(document).ready(function() {
	$('.tx-powermail-pi1 input[type=file]').each(function() {
		$(this).addClass('file').addClass('hidden');
		$(this).parent().append($('<div class="fakefile" />').append($('<input type="text" />').attr('id',$(this).attr('id')+'__fake')).append($('<span>Browse</span>')));

		$(this).bind('change', function() {
			$('#'+$(this).attr('id')+'__fake').val($(this).val());;
		});
		$(this).bind('mouseout', function() {
			$('#'+$(this).attr('id')+'__fake').val($(this).val());;
		});
	});

	
});


