$(document).ready(function(){
	
// MENU  //
	$("#fb-top-nav ul li ul").hide();
	$("#fb-top-nav ul li").hover(function () {
		$(this).children('ul').animate({height: 'toggle'}, 500, 'easeOutExpo');
		}, function() {
			$(this).children('ul').hide().stop(true,true);
	});
	
});

