if (document.getElementById)
	is_dom = true;
else
    is_dom = false;

function showsitemap()
{
//    a1 = new Image; a1.src = "&.root;img/bottom-but-1-act.png";
    elem = document.getElementById ("sitemap-content");
	elem.className = "sitemap-content";

	document.images["sitemap-header-maximaizer"].src = "http://www.mon-pit.ru/img/bottom-but-1-act.png";
	document.images["sitemap-header-minimaizer"].src = "http://www.mon-pit.ru/img/bottom-but-2-pass.png";

    var elem2 = document.getElementById ("sitemap-span");
    elem2.onclick = hidesitemap;
}

function hidesitemap()
{
    elem = document.getElementById ("sitemap-content");
	elem.className = "sitemap-content-hidden";

	document.images["sitemap-header-maximaizer"].src = "http://www.mon-pit.ru/img/bottom-but-1-pass.png";
	document.images["sitemap-header-minimaizer"].src = "http://www.mon-pit.ru/img/bottom-but-2-act.png";

    var elem2 = document.getElementById ("sitemap-span");
    elem2.onclick = showsitemap;
}

