$(document).ready
(
	function()
	{
		$('#setPhoto').click
		(
			function()
			{
				$('#photo').toggle('fast');
				if($('#setPhoto').text()=="загрузить")
				{
					$('#setPhoto').text("отмена");
				}
				else
				{
					$('#setPhoto').text("загрузить");
				}
			}
		);

		$('a.groupName, a.orgName').click
		(
			function()
			{
				initJstree($(this).next().find('div.jstree'));
				hs.htmlExpand
				(
					this,
					{
						contentId: "popup_" + $(this).attr('id').replace("documents_","")
					}
				);
			}
		);
	}
);
