function easy(id){
	$.post("http://www.ineedtutor.ru/ajax.php", { type: 1, id: id }, function(data){ $("#report").append(data);});
	a = '<a href="javascript:{}" onclick="dell('+id+')"><img src="pics/cancel.png" border="0" height="24" width="24"></a> &nbsp;<em>Репетитор добавлен в <a href="#formadd">форму заявки</a>. <a href="find.php">Перейти к оформлению заявки</a></em>' ;
	$("#tutor" + id).html(a);
}
function easy2(id){
	$.post("http://www.ineedtutor.ru/ajax.php", { type: 1, id: id }, function(data){ $("#report").append(data);});
	a = '<span style="background-color: #66CC66;">Репетитор выбран</span>' ;
	$("#tutor" + id).html(a);
}
function easy3(id){
	$.post("http://www.ineedtutor.ru/ajax.php", { type: 1, id: id }, function(data){ $("#report").append(data);});
	a = '<a href="javascript:{}" onclick="dell('+id+')"><img src="pics/cancel.png" border="0" height="24" width="24"></a> &nbsp;<em>Репетитор добавлен. <a href="find.php">Перейти к оформлению заявки</a></em>' ;
	$("#tutor" + id).html(a);
}
function dell(id){
	$.post("http://www.ineedtutor.ru/ajax.php", { type: 2, id: id }, function(data){ $("#report").append(data);});
	a = '<a href="javascript:{}" onclick="easy('+id+')"><img src="pics/add.png" border="0" height="24" width="24"></a>' ;
	$("#tutor" + id).html(a);
	$("#add" + id).remove();
}
function clear(type){
	$.post("http://www.ineedtutor.ru/ajax.php", { type: type }, function(data){ $("#report").html(data);});

}
