
$(function(){// topmenu: var tompenu_lock=false;$('.withchild').hover(function() {	$(this).find('ul').show();}, function() {	if(!tompenu_lock) $(this).find('ul').hide();});
//$('.click_layer').hover(function() {
//	alert('hover on #click_layer');//	$(this).next('ul').show();
//	console.log($(this).next('ul'));//}, function() {//	if(!tompenu_lock) $(this).next('ul').hide();//});

$('.withchild ul').hover(function() {	tompenu_lock=true;}, function() {	tompenu_lock=false;});$('.withchild .subitem li').hover(function() {	$(this).find('a').addClass('active');}, function() {	$(this).find('a').removeClass('active');	tompenu_lock=false;});})//onload



