$(function() {
	$('.header_links ul li').hover(function() {
		$(this).find('ul').stop(true, true);
		$(this).find('ul').slideDown();
	}, function() {
		$(this).find('ul').stop(true, true);
		$(this).find('ul').slideUp();
	});
});
