$(document).ready(function() {
	var addGuest='<li>'+
		'<table width="100%" border="0" cellspacing="0" cellpadding="0">'+
			'<tr>'+
				'<td width="40%"><input type="text" name="guestName[]" class="choiceInsert" /></td>'+
				'<td width="11%"><input type="checkbox" name="guestPrint[]" value="1" class="choiceCheck" /></td>'+
				'<td><input type="checkbox" value="1" class="choiceCheck" name="guestSend[]" /> <input type="text" name="guestEmail[]" class="choiceInsertLast" /> <img src="http://povod.tut.by/pics/call/x.gif" width="9" height="9" alt="" /></td>'+
			'</tr>'+
		'</table>'
		+'</li>';

	$("div.addBtn").click(function(){
		$("ol.addGuest").append(addGuest);
	 });

	$("ol.addGuest img").live("click",function(){
		$(this).parents("li").remove();
	 });


});

