function scroll_continer(selector, is_up, time)
{
  var scrollt =  $(selector).scrollTop();
  var bheight =   $(selector).height()
  var position = scrollt + bheight;
  if (is_up) position = scrollt - bheight;
  $(selector).animate(
     {scrollTop :  position}
    , time);
}

$(document).ready(function(){
  $('#notes-arrows .down').click(function(){
      scroll_continer('#user-boxes .boxes-container', false, 1000);
  });

  $('#notes-arrows .up').click(function(){
      scroll_continer('#user-boxes .boxes-container', true, 1000);
  });
});

/*
  $('#entrymenu  ul > li').hover(
        function() {
                $('> a ', this).css('font-weight', 'bold');
                $('ul', this).css('z-index', '1000');
        	$('ul > li', this).show();
        },

        function() {
                $('> a ', this).css('font-weight', 'normal');
                $('ul', this).css('z-index', 'auto');
        	$('ul > li', this).hide();
        }
    );
*/
