var $j = jQuery.noConflict();
$j(document).ready(function(){
 	
 	$j('#sidebar').scrollFollow( {
                        speed: 1000
             });
	
	var currentURL = window.location.pathname;
	$j('a[href=\''+currentURL+'\']').parent().addClass('active');
	
	
	$j("#menu li").mouseover(function(){
		$j(this).addClass("hover_active");
	}).mouseout(function(){
		$j(this).removeClass("hover_active");
	});
	
	
	$j("a.disabled").click(function() {
		return false;
	});
	
	$j(".graceful").scrollGracefully();

	$j('#menu-expandable h4').scrollDown({
		content: ".menu-expandable-content"
	});
	
});








