﻿$(document).ready(function(){
	$("div.navi>ul>li").bind("mouseenter",function(){
      $("div.menu_vert",this).show();
    }).bind("mouseleave",function(){
      $("div.menu_vert",this).hide();
    });


});


function doSearch(){
	document.mysearchform.submit();
}
function show(){
	document.getElementById("menu").style.visibility='';
}
function hidden(){
	document.getElementById("menu").style.visibility='hidden';
}





