    function buildSubcatNames(categoryID){
        var subcatNames = {'All': 'All',
            'awards-teaser': 'Free Livechat',
            'awards-stars': '5 Star Rated',
            'awards-unrate': 'Not Rated',
            'feat-elite': 'Fast Internet',
/*            'feat-sound': 'With Sound',*/
            'feat-strip': 'With StripGame',
            'age-teens': 'College Girls',
            'age-students': 'Students',
            'age-wives': 'Wives',
            'age-mature': 'Mature',
            'hair-1': 'Blondes',
            'hair-11': 'Redheads',
            'ethnicity-2': 'Ebony',
            'ethnicity-5': 'Latinas',
            'ethnicity-3': 'Asians',
            'ethnicity-1': 'Caucasians',
            'build-2': 'Petite',
            'build-5': 'BBW'
        };
        if (categoryID == 83){
            subcatNames['orient-gay'] = 'Gay';
            subcatNames['orient-str'] = 'Straight';
        } else if (categoryID == 84){
            subcatNames['group-couple'] = 'Couples';
            subcatNames['group-more'] = 'Threesomes';
        } else {
            subcatNames['adult-2'] = 'Softcore';
            subcatNames['adult-3'] = 'Hardcore';
            subcatNames['adult-4'] = 'Specialized';
        }
        return subcatNames;
    }

    function createDropDown(linkID, menuID){
        var link = document.getElementById(linkID);
        if (link == null) return;
        link.menu = document.getElementById(menuID);
        link.onmouseover = function(){
            this.menu.style.display = '';
        }
        link.onmouseout = function(){
            this.menu.style.display = 'none';
        }
    }

    function profile3PicsShow(objID, picturesArchive, chathostNick, picPath){
        var a, li, img;
        var pics3 = document.getElementById(objID);
        for (i = 0; i < 3; i++){
            if (!picturesArchive.origData[picturesArchive.dataRandomKeys[i]]) continue;
            li = document.createElement('LI');
            a = document.createElement('A');
            img = document.createElement('IMG');
            img.picPath = picturesArchive.origData[picturesArchive.dataRandomKeys[i]][3];
            img.src = picPath + img.picPath;
            img.alt = "FREE picture of " + chathostNick;
            img.onclick = fnPicEnlarge;
            img.width = 112;
            img.height = 84;
            a.appendChild(img);
            li.appendChild(a);
            pics3.appendChild(li);
        }
    }

