Помогите плиз решить проблемку. Имеем java script: //<!-- function menu_parent_show_on(ID){ timeout_id = window.setTimeout("menu_parent_show('"+ID+"')",1200); } function menu_parent_show_off(){ clearTimeout(timeout_id); } function menu_parent_show(ID){ if(document.getElementById(ID).style.display == 'none'){ document.getElementById(ID).style.display=''; } } function menu_parent_hide(ID){ if(document.getElementById(ID).style.display != 'none'){ document.getElementById(ID).style.display='none'; } }//--> И html вариант, который использует данный java script: <div class="menu_parent"><a onMouseOut="menu_parent_show_off()" href="http://arnebiaproduct.arnebia.ru/cgi-bin/index.cgi?id=108&bsk=1" onMouseOver="menu_parent_show_on('mp_108')">Заказы</a></div> <div class="menu_parent_tips" id="mp_108" style="display: none;"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tbody> <tr> <td class="menu_parent_tipsdata" width="100%"><div class="newsthomb_left"><img src="index.cgi_files/order_small.gif" class="newsicon_left" border="0"></div> <div align="justify">Тут описание.</div></td> <td valign="top"><img onClick="menu_parent_hide('mp_108')" src="index.cgi_files/cross_parent.gif" alt="Close"></td> </tr> </tbody> </table> </div> Проблема в том, что JavaScript отказывается понимать class. В упор не видит в нем вложенный стиль. В function menu_parent_show(ID) используется стиль, а хотел бы заставить понимать class. Как можно обойти подобную проблему? P.S. Админ, а можно поправить в заголовке темы style на class? А то как-то несоответствие темы.