//if window.ie
window.addEvent('domready',function(){

	$$('.image input[type=file]').each(function(el){
		
		
		
		el.getParent().setStyles({
			position: 'relative',
			textAlign: 'right',
			overflow: 'hidden'
		});
		
		var a = new Element('input', {href: 'javascript: void(0);',type:'button',value:'בחר קובץ'})
			.addEvent('click', function() {
				alert(this.name);
				this.click();
				
			}
			.bind(el))
			.injectAfter(
				el.setStyles({
					position: 'absolute',
					bottom: '0',
					right: '-123px',
					opacity: '0.01'
				})
			);
			
	})
});
