$(document).ready(function(){
	$('.intro > ul > li').hover(function(){
		$(this).find('ul').stop(true, true);
		$(this).children('ul').slideDown(100);
	}, function(){
		$(this).children('ul').slideUp(100);
	})
});