$(function(){
	$('#header li.first').mouseover(function(){
		$(this).children('ul.second').stop(true, true).fadeIn();
	})
	.mouseleave(function(){
		$(this).children('ul.second').stop(true, true).fadeOut();
	});
});
