$(document).ready(function(){
	$('#scrollit-bottom').click(function(){
		var height = $('#AboutUsText').height();
		$('#AboutUsText').animate({scrollTop: '+='+height+'px'}, 'slow');
		return false;
	});
	$('#scrollit-up').click(function(){
		var height = $('#AboutUsText').height();
		$('#AboutUsText').animate({scrollTop: '-='+height+'px'}, 'slow');
		return false;
	});
});