$().ready(function(){
				   
				   $("ul#effective_computation_list").hide();
				   $("ul#word_problemsII_list").hide();
				   $("ul#algebraI_list").hide();
				   $("ul#number_properties_list").hide();
				   $("ul#algebraII_list").hide();
				   $("ul#combinatorics_list").hide();
				   $("ul#geometry_list").hide();
				   $("ul#probability_list").hide();
				   $("ul#word_problemsI_list").hide();
				   
				   $("#word_problemsI_link").click(function(){   
						$("ul#word_problemsI_list").slideToggle("slow");
						return false;
				   });//end of .click callback	
				   				   
				   $("#probability_link").click(function(){   
						$("ul#probability_list").slideToggle("slow");
						return false;
				   });//end of .click callback	
				   
				   $("#geometry_link").click(function(){   
						$("ul#geometry_list").slideToggle("slow");
						return false;
				   });//end of .click callback	
				   
				   $("#combinatorics_link").click(function(){   
						$("ul#combinatorics_list").slideToggle("slow");
						return false;
				   });//end of .click callback	
				   
				   $("#algebraII_link").click(function(){   
						$("ul#algebraII_list").slideToggle("slow");
						return false;
				   });//end of .click callback	
				   
				   $("#number_properties_link").click(function(){   
						$("ul#number_properties_list").slideToggle("slow");
						return false;
				   });//end of .click callback	
				   
				   $("#algebraI_link").click(function(){   
						$("ul#algebraI_list").slideToggle("slow");
						return false;
				   });//end of .click callback					   
				   
				   $("#word_problemsII_link").click(function(){   
						$("ul#word_problemsII_list").slideToggle("slow");
						return false;
				   });//end of .click callback				   
				   
				   $("#effective_computation_link").click(function(){   
						$("ul#effective_computation_list").slideToggle("slow");
						return false;
				   });//end of .click callback
				   			   
});//end of .ready callback

// JavaScript Document