    function scrollDown(elem_id) {
        $('#'+elem_id).animate({
                                            scrollTop: '+='+$('#'+elem_id).height()+'px'
                               });                                   
    }
    
    function scrollUp(elem_id) {
        $('#'+elem_id).animate({
                                            scrollTop: '-='+$('#'+elem_id).height()+'px'
                               });
    }
    
    function scrollLeft(elem_id) {
        $('#'+elem_id).animate({
                                            scrollLeft: '-='+$('#'+elem_id).width()+'px'
                               });
    }
    
    function scrollRight(elem_id) {
        $('#'+elem_id).animate({
                                            scrollLeft: '+='+$('#'+elem_id).width()+'px'
                               });
    }
    
    function chooseCategory(sel) {
        if( sel.selectedIndex != 0 ) {
            document.location = '/cat-'+sel.options[sel.selectedIndex].value+'-'+sel.options[sel.selectedIndex].innerHTML;
        }
    }