function hidecode()
{
		var cAll = document.all;

            for ( inx = 0; inx < cAll.length; inx++ ) 
            {
                var eItem = cAll[inx];
                if ( "faq" == eItem.className ) 
                {
                    
                    eItem.onclick = function() 
                    {
                        var sParentID = this.id;
                        var sChildID = sParentID.substring( 0, sParentID.length - 1 ) + "a";
                        var oChild = cAll( sChildID );
                        oChild.style.display = ( "none" == oChild.style.display ) ? "block" : "none";
                    }
                }
                if ( "faqb" == eItem.className ) 
                {
                    eItem.style.display = "none";
                }
       
        }
}