$(document).ready(function() {
	$("ul#navbar li a").hover(function() {
		$(this).parent().find('ul').slideDown('medium').show();
	
		$(this).parent().hover(function() {
		}, function() {
			$(this).parent().find("ul.subnav").fadeOut('fast');
		});
	
	});
	
	$(document).find("#relatedlinks").remove();
	
});
