$(function() {
	$('#middle ul.sub').parent('li').hover(function() {
		$(this).children('.sub').show();
	}, function() {
		$(this).children('.sub').hide();
	});

	$(".topLinks").tooltip();
});