jQuery.fn.fastSave=function(fn,opt){
	$(this).each(function(){
		
		if($(this).data('init')==1)return;
		$(this).data('init',1);
		
		$(this).addClass('ui-widget-content ui-corner-all');
		$(this).css({
			position:'absolute',
			cursor:'pointer',
			overflow:'hidden',
			width:'58px'
		});
		$(this).append(
				'<table  >'+
					'<tr>'+
						'<td><span class="ui-icon ui-icon-disk"></span></td>'+
						'<td>Salva</td>'+
						'<td ><input value="nome"  /></td>'+
					'</tr>'+
				'</table>'
		);
		$(this).hover(
			function(){
				$(this).animate({width:220},'fast', function(){
					$(this).css('z-index', 2000);
					$(this).find('input').focus();
				});
				$(this).css('z-index', 2000);
				$(this).bind('keyup',function(e){	
					var data = $(this).find('input').val();
					
					catchEnter(e,fn,data);
				});
			},
			function(){
				$(this).animate({width:58}, function(){ $(this).css('z-index', 'auto'); });
				$(this).unbind('keyup');
			}
		);
		
	});
	
}