/*
$(document).ready(function() { 
  var i = document.getElementById("edit-hidden").value;						   
if (i==0)
{$("#removeUser").hide();}
});
*/

function addInput() {
var i = document.getElementById("edit-hidden").value;	
var d=new Date();
 a = jQuery("#secret-wrapper").css("height");
 b = a.length;
 s = a.substr(0, b-2);
 ss = parseInt(s);
 height = ss + 44;
 height = height+'px' ;
/* alert(height);*/
  jQuery("#secret-wrapper").css("height", height);
 
	jQuery("#add1User").append('<br><div class="field-item"><div class="date-wrapper"><input type="TEXT" onclick="displayDatePicker(\'fw_publish_date_'+i+'\');" class="input-text small-box publish_date" value="'+(d.getMonth()+1)+'/'+d.getDate()+'/2011" maxlength="20" size="20" tabindex="13" name="fw_publish_date_'+i+'" id="fw_publish_date_'+i+'" style="display:inline !important;"></div><div class="goal-wrapper"><input type="TEXT" class="input-text action_item sub_goal" value="" maxlength="50" size="50" tabindex="1" name="fw_sub_goal_'+i+'" id="fw_sub_goal_'+i+'"></div></div>');
	//alert(i);
i++;
document.getElementById("edit-hidden").value = i;
}


	

