jQuery(document).ready(function($){
	$('#top-nav-menu li').hover(
		function() {
			$('div.subtitle', this).fadeIn(300);
		},
		function() {
			$('div.subtitle', this).fadeOut(300);
		}
	);
});
