$(function() {
			
	$.localScroll();
			
	// Load the show/hide button
	$("#showArticles").toggle(function() {
	  $("#journalArticles").show(); 
	  $('#show').text($('#show').text() == 'Show ' ? 'Hide ' : 'Show '); 
	  return true;
	  
	}, function() {
	  $("#journalArticles").hide();
	   $('#show').text($('#show').text() == 'Show ' ? 'Hide ' : 'Show ');  
	   return true;
	});
	
	
	
	
	$("#more1").click(function(){
		$('.hidden1').slideToggle("fast"); 
		$(this).text($(this).text() == 'more...' ? 'less' : 'more...'); 
		return false;
	});
	
	$("#more2").click(function(){
		$('.hidden2').slideToggle("fast"); 
		$(this).text($(this).text() == 'more...' ? 'less' : 'more...'); 
		return false;
	});
	
	
});
