$("ul.topnav > li").hover(
	function() {
	  var i = $(this).index();
	  var h = $("ul.topnav > li");
	  if ($(h[i]).children("ul").length == 1){
	  	$(h[i]).children("ul").slideDown("fast");
	  }
	},
	function() {
	  var i = $(this).index();
	  var h = $("ul.topnav > li");
	  if ($(h[i]).children("ul").length == 1){
	  	$(h[i]).children("ul").slideUp("fast");
	  }
	}
);
