jQuery(function($){
	$(".scrollholder").mousewheel(function(objEvent, intDelta){
		if (intDelta > 0)
		   $('.scrollholder').stop().scrollTo('-=50', 1);
	    else if (intDelta < 0)
	       $('.scrollholder').stop().scrollTo('+=50', 1);
	});

	$('.down').mouseover(function(){
		$('.scrollholder').stop().scrollTo('100%', 1000);
	});
	
	$('.down').mouseout(function(){
		$('.scrollholder').stop();
	});
	
	$('.up').mouseover(function(){
		$('.scrollholder').stop().scrollTo('0%', 1000);
	});
	
	$('.up').mouseout(function(){
		$('.scrollholder').stop();
	});
});
