$(document).ready(function(){


	$('#tt1 ul').hide();
	$('#tt2 ul').hide();
	$('#tt3 ul').hide();

	$('#afc').hover(function() {
				$('#afc #tt1 ul').slideDown(700);
			}, function() {
				$('#afc #tt1 ul').slideUp(700);
			});
			
			$('#nfc').hover(function() {
				$('#nfc #tt2 ul').slideDown(700);
			}, function() {
				$('#nfc #tt2 ul').slideUp(700);
			});
			
			
			$('#followus').hover(function() {
				$('#followus #tt3 ul').slideDown(700);
			}, function() {
				$('#followus #tt3 ul').slideUp(700);
			});

})