function toggleHelp(me)
{
    showNext= $(me).next().css('display')=='none';
    $('.description').hide();
    if (showNext)
        $(me).next().show(0 , function(){ if ($.browser.mozilla) $(this).css('display','table-row'); } );
}
$(document).ready(function() { $('.item').click(function(event){toggleHelp(this);});});