$("document").ready(function(){
	  $(".top-menu ul").hide();
	  $(".top-menu div").hover(function() {
		  $(this).children("ul").slideDown("fast");
		  $(this).children("a").addClass("hover");
	  }, function() {
		  $(this).children("ul").slideUp("fast");
		  $(this).children("a").removeClass("hover");
	  });
	});