words = JSON.parse(localStorage.getItem('words')) || [];
$("table tr:nth-child(2)").clone().find("input").attr({
'id': function(index, val) { return val + index },
'name: function(index, val) { return val + index },
'value' : ''
}).end().appendTo("table");
$('*[onclick]').live('touchstart', function(e) {
$(this).trigger('click');
e.preventDefault();
});