﻿ $(document).ready(function(){
 	$("ol li ul").hide();
 	$("ol li").click(function() {
 		$(this).children("ul").toggle(500);
 	});
  });
