		jQuery(function( $ ){
			$('.profile_list .change a')
				.filter('.next').bind('click', 'next', moveUP )
				.end()
				.filter('.prev').bind('click', 'prev', moveDOWN );				
			function moveUP( e ){
				var $target = $(this).parent()[e.data]();
				$('.profile_list  ul').scrollTo( '+=210px', { 
					speed:800,
					axis:'y'
				});
				return false;
			};
			function moveDOWN( e ){
				var $target = $(this).parent()[e.data]();
				$('.profile_list ul').scrollTo( '-=210px', { 
					speed:800,
					axis:'y'
				});
				return false;
			};
		});

