
$(function() {
	$("#topmenu").addClass("j");
	$("#topmenu li ul").hide();
	$("#topmenu li").hover(
		function () {
			var t = $(this);
			t.addClass("hovered");
			t.children().show();
		},function(){
			var t = $(this);
			t.removeClass("hovered");
			t.children().hide();
	});
});

