$(document).ready(function()
{ 

	$("ul.dropdown").hide();


	$("#topmenu ul li").hover(
	  function () {
		$(this).children().next().show();
      }, 
      function () {
       $(this).children().next().hide();
      }

    );

});