$(function(){
	$('ul#learnMore li').hover(
	function(){
		var flyHeight = $(this).find('div.flyout').height() + 36;
		$(this).find('div.flyout').css('top','-' + flyHeight + 'px').show();
	}, function(){
		$(this).find('div.flyout').hide();
	});
});
