function dropDowns() {
	$("#topnavsurround ul li").not($("#topnavsurround ul li li")).hover(function() {
		$(this).find("ul:nth-child(2)").css("display","block");
		$(this).addClass("navon");
	},function(){
		$(this).find("ul:nth-child(2)").css("display","none");
		$(this).removeClass("navon");
	});
}
$(document).ready(dropDowns);


