Alex45,
Вот Эту строку
<div align="right"><h2><img src="http://iads.com.ua/images/gal.gif" alt="Категория"> <a href="#" onClick="detailss(8888888);return false;" style="cursor:pointer">Выберите категорию</a></h2></div>
<div id="8888888" style="DISPLAY: none;"><div style="margin-top:15px;"><div style="float:left; margin-right:10px;">
Замените на такую
<div align="right"><h2><img src="http://iads.com.ua/images/gal.gif" alt="Категория"> <a href="#" onClick="ShowHide('Hide_Show');return false" style="cursor:pointer">Выберите категорию</a></h2></div>
<div id="Hide_Show" title="block" style="display:none"><div style="margin-top:15px;"><div style="float:left; margin-right:10px;">
В самый конец подгружаемых скриптов добавьте
function ShowHide(id) {
var a = document.getElementById(id);
var b = a.title;
a.title = a.style.display;
a.style.display = b;
}