$(document).ready(function(){

    //$('#entryContent h3.chapter-title a').each(function(i, el){
		var currEl         = $('#entryContent h3.chapter-title a');//$(el);
		var parentBox      = currEl.parents('div.chapter'); 

		var chapterContent = $('#links_cont');
		
		currEl.attr({title:'Collapse links'});	
		//parentBox.addClass('expanded');
		
		currEl.bind('click', function(e){
			e.preventDefault();
			
			if((chapterContent).is(':hidden')){
				chapterContent.show();
				currEl.attr({title:'Collapse links'});	
				parentBox.addClass('expanded');
			}
			else{
				chapterContent.hide();
				currEl.attr({title:'Expand links'});	
				parentBox.removeClass('expanded')
			}
		});
	//});	

});