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