// SCROLLER DEFAULTS 
jQuery(function( $ ){


	$('#recent_up').click(function()
	{
		if  ($('#recentPane').position().top < 0)
		{	
		  	$('#recentPane').animate({top : "+="+200}, 230);
		}		
	});
	
	
	$('#recent_down').click(function(){				
		if  ($('#recentPane').position().top >= -1000)
		{										 
			$('#recentPane').animate({top : "-="+200}, 230);
		}
	});	
	

	
});




