//animated scrolling for element, with a bounce

$(document).ready(
	function() 
	{
			$('#down').click(function() {
			pScroll=44;
			$('#itemsFrame').animate({scrollTop: '+=' + pScroll + 'px'}, 1000, 'backout');
			});
			
			$('#up').click(function() {
			pScroll=-44;;
			$('#itemsFrame').animate({scrollTop: '+=' + pScroll + 'px'}, 1000, 'backout');
			});
			///
			
	}
);
