$(document).ready(function(){

	$(".section ul.items > li").find("p.asofDate").addClass("strong");
		//to change More to Close
	$("#toggleSection").hide();
	
	$("a.toggleLink").toggle(function(){
		 $('#toggleSection').slideDown();  
		$(this).html('Close...'); 
	},function(){
		 $('#toggleSection').slideUp(); 
		$(this).html('More Information...');
	}); 

});	
