﻿$(function(){
	var params = $("input").serialize();
	$.ajax( {
		url : "menu_firstMenu.do",
		type : "post",
		dataType : "json",
		data : params,
		success : update_pate
	});
});
function update_pate(result) 
{
	var json = eval("(" + result + ")");
	$("#ddtopmenubar").html(json.Data) 
	$('#webmenu li').hover(function(){
		$(this).children('ul').stop(true,true).show('slow');
	},function(){
		$(this).children('ul').stop(true,true).hide('slow');
	});
	
	$('#webmenu li').hover(function(){
		$(this).children('div').stop(true,true).show('slow');
	},function(){
		$(this).children('div').stop(true,true).hide('slow');
	});
	return false;
}

