/**
 * @author marcin
 */
 $(document).ready(function(){
	var maxTop = (0 - $('#content').outerHeight() + $('#content').parent().innerHeight())
	$('#dScroll').hover(
		function(){
			$('#content').animate({top: maxTop+'px'}, $('#content').outerHeight() * 4);
		},
		function(){
			$('#content').stop();
		}
	);
	$('#uScroll').hover(
		function(){
			$('#content').animate({top: '0px'}, $('#content').outerHeight() * 4);
		},
		function(){
			$('#content').stop();
		}
	);
	$('#dScroll').click(function(e){e.preventDefault();});
	$('#uScroll').click(function(e){e.preventDefault();});
});
