jQuery.fn.nocomplete = function() {
	i = 0;
	d = new Date;
	time = d.getTime();
	return this.each(function(){
		newName = time+''+i;
		oldName = this.name;
		this.name = newName;
		jQuery(this).keyup(function(e) {
			jQuery(this).next()[0].value = jQuery(this).attr('value');
		}).after('<input type="hidden" name="'+oldName+'" />');
		i++;
	});
};
jQuery(function() {
	jQuery('input.nocomplete').nocomplete();
});