    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 scrollLeft1(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;
        }
    }
    if (typeof(moveSlider) != 'undefined' && moveSlider != null)
    	setSlider();
    function setSlider(){
    	for (i = 0; i < moveSlider; i++){
    		scrollRight('chans');
    	}
    }