/* 메뉴여닫기 - 별도로 추가한 부분 */
function togglePBPmenu(id) {
    var obj = xGetElementById(id);
    var rh = 0;
    if(obj.style.display == 'none') {
        obj.style.display = 'block';
        rh = xHeight(obj);
    } else {
        rh = xHeight(obj);
        obj.style.display = 'none';
    }
    return false;
}

/* 메뉴여닫기 - 소트바의 카테고리 출력 */
function togglePBPmenu3(id) {
    var obj = xGetElementById(id);
    var rh = 0;
    if(obj.style.display == 'none') {
        obj.style.display = 'block';
		obj.style.position = 'absolute';
        rh = xHeight(obj);
    } else {
        rh = xHeight(obj);
        obj.style.display = 'none';
    }
    return false;
}
