jQuery(document).ready(function(){
	jQuery('#ContentContainer').jScrollPane({scrollbarWidth:20, dragMaxHeight:20, dragMaxHeight:60, showArrows:true });
	//When mouse rolls over
	jQuery("#Arrow").mouseover(function(){
		jQuery(this).hide();
		jQuery("#DayList").stop().animate({width:'170px'},{queue:false, duration:600, easing: 'easeOutBounce'});
	});
	//When mouse is removed
	jQuery("#Content").mouseover(function(){
		if(jQuery("#DayList").css('display') != 'none')
		jQuery("#DayList").stop().animate({width:'0px'},600 ,'easeOutBounce' , function(){jQuery("#DayList").hide();jQuery('#Arrow').show();});
	});
	//jQuery("#DayList>li>a").mouseover(function(){jQuery("#DayList").stop();});
});