// http://tes.armenia.ru

function toggleDescription(mode)
{
	if (mode == 'full')
	{
		$j("#trunc-description").hide();
		$j("#trunc-link").hide();
		$j("#full-description").show();
		$j("#full-link").show();
	}
	else if (mode == 'trunc')
	{
		$j("#full-description").hide();
		$j("#full-link").hide();
		$j("#trunc-description").show();
		$j("#trunc-link").show();
	}
}

function hideMe(id)
{
	$j(id).hide();
}

function showMe(id)
{
	$j(id).show();
}
