대충 고쳐봤음.
tc 1.6.3 에 적용함.
보면 알 수 있겠지만.
좌우 키로 페이지 이동이 됩니다.
메뉴 단축키 1 - 7
그 밖에
H : 처음
L : 목록
P : 전시
G : 방명록  
A : 이전
S : 다음  
/tc/script/common2.js
956 라인부터.  
// dawnsea
        switch(event.keyCode) {
                case 50: case 76: //L
                        window.location = blogURL + "/category";
                        break;
                case 51: case 80: //P
                        window.location = blogURL + "/category/5";
                        break;
                case 49: case 72: //H
                        window.location = blogURL;
                        break;
                case 52:
                        window.location = blogURL + "/category/4";
                        break;
                case 53:
                        window.location = blogURL + "/tag";
                        break;
                case 54:
                        window.location = blogURL + "/26";
                        break;
               case 55: case 71:
                        window.location = blogURL + "/guestbook";
                        break;
               case 81: //Q
                        window.location = blogURL + "/owner";
                        break;
                case 82: //R
                        if (isReaderEnabled)
                                window.location = blogURL + "/owner/reader";
                        break;
                case 84: //T
                        if (isReaderEnabled)
                                window.location = blogURL + "/owner/reader/?forceRefresh";
                        break;
                case 65: case 37://A
                        if(prevURL)
                                window.location = prevURL;
                        break;
                case 83: case 39://S
                        if(nextURL)
                                window.location = nextURL;
                        break;