$(document).ready(function() {
	/*
	$(".topmenu .sub-menu .parent a:first").click(function() {
		//$(this).parent().children("ul").slideToggle(200);
		$(this).parent().find("ul.lv3").slideToggle(200);
		$(this).parent().toggleClass("open");
	});
	*/

	$(".sub-menu").parent("li").addClass("parent");
	$(".sub-menu li:first-child").addClass("first");
	$(".sub-menu li:last-child").addClass("last");

	$(".topmenu .sub-menu .parent a").click(function() {
		$(this).parent().children("ul").slideToggle(200);
		$(this).parent().toggleClass("open");
	});
	
});
