$('').ready(function(){
    $('input[type=file]').css({
	'-moz-opacity':'0',
	'filter':'alpha(opacity: 0)',
	'opacity':'0'
    }).width('250px').wrap('<div/>').parent().addClass('fileinputs').append('<div><input/><button type="button">ïÂÚÏÒ</button></div>').children('div').addClass('fakefile');
    if ($.browser.msie) {
	$('.fakefile button').css({'line-height':'18px'});
	$('.fakefile input').css({'vertical-align':'top'});
    }
    $('.fakefile input').css({'width':'180px'});
    $('.fileinputs input').change(function(inf){
	var val=$(this).attr('value');
	if (strstr(val,'C:\\fakepath'))
	val=val.substr(12);
        $(this).next().children('input').attr('value',val);
    });
    $('.fakefile button').click(function(){$('.fileinputs input[type=file]').click();});
});

