$(document).ready(function(){
	$("span.section").hover(function() {
		$(this).parent().find("ul.subsection").slideDown(200).show();
		$(this).parent().hover(function() {
		}, function(){
			$(this).parent().find("ul.subsection").fadeOut(100);
		});
	})
});
