//для схлопывания меню (z - что-бы короче название было)
function z(id)
{
if(document.getElementById("s"+id) == null)
   return (false);
if(document.getElementById("s"+id).style.display=='block')
    {
    document.getElementById("s"+id).style.display='none';
    //document.getElementById('img'+id).src = 'o';
    return (false);
    }
else
    {
    document.getElementById("s"+id).style.display='block';
    //document.getElementById('img'+id).src = 'c';
    return (false);
    }
}

