// JavaScript Document
var child_menu=new Array();
child_menu[0]=new Array("top_menu1","普陀概览","/ptgk/ptgk.html","_self");
child_menu[1]=new Array("top_menu1","区志年鉴","http://www.zsgj.gov.cn/","_blank");
child_menu[2]=new Array("top_menu1","行政区图","/images/map.gif","_blank");
child_menu[3]=new Array("top_menu1","今日普陀","/ptnews/","_self");
child_menu[4]=new Array("top_menu2","政府领导","/qz/","_self");
child_menu[5]=new Array("top_menu2","领导讲话","/zbtb/","_self");
child_menu[6]=new Array("top_menu2","政府机构","/jigou/bgs.html","_self");
child_menu[7]=new Array("top_menu2","工作规则","/xxgk/gzgz/","_self");
child_menu[8]=new Array("top_menu2","政府工作报告","/gzbg/","_self");
child_menu[9]=new Array("top_menu2","政府信息公开","/zfxxgkml.aspx?action=ml","_self");
child_menu[10]=new Array("top_menu3","公告公示","/zfgg/","_self");
child_menu[11]=new Array("top_menu3","政务信息","/zwxx/","_self");
child_menu[12]=new Array("top_menu3","人事任免","/rsrm/","_self");
child_menu[13]=new Array("top_menu3","政府采购","http://www.ptztb.com/list2.asp","_blank");
child_menu[14]=new Array("top_menu3","实事项目","/ssxm/","_self");
child_menu[15]=new Array("top_menu3","统计数据","http://www.ptdp.gov.cn/info.asp?lm=7","_blank");
child_menu[16]=new Array("top_menu3","财政投资","/czgk/","_self");
child_menu[17]=new Array("top_menu3","发展规划","/fazhan/","_self");
child_menu[18]=new Array("top_menu3","应急管理","/yingji/index.html","_blank");
child_menu[19]=new Array("top_menu3","公务员考录","http://www.zhoushan.gov.cn/ygzw/gwykl.html","_blank");
child_menu[20]=new Array("top_menu4","区长信箱","/qzemail.aspx","_self");
child_menu[21]=new Array("top_menu4","投诉咨询","http://xn.putuo.gov.cn/","_blank");
child_menu[22]=new Array("top_menu4","建议提案","/jyta.html","_self");
child_menu[23]=new Array("top_menu4","市民论坛","http://bbs.zsputuo.com/?fromuid=1070","_blank");
child_menu[24]=new Array("top_menu4","网上调查","/vote.aspx?vtype=2","_self");
child_menu[25]=new Array("top_menu4","意见征集","/gbook.aspx","_self");
child_menu[26]=new Array("top_menu4","在线访谈","http://www.zhoushan.cn/lsgtsite/index.htm","_blank");
child_menu[27]=new Array("top_menu5","行政事项","/bmfw.aspx?lev1id=2","_blank");
child_menu[28]=new Array("top_menu5","办事指南","/bszn/","_self");
child_menu[29]=new Array("top_menu5","表格下载","http://www.zsbz.gov.cn/web/center.jsp?s=2","_blank");
child_menu[30]=new Array("top_menu5","在线申请","http://www.zsbz.gov.cn/web/index.html","_blank");
child_menu[31]=new Array("top_menu5","办理查询","http://www.zsbz.gov.cn/web/search.jsp","_blank");
child_menu[32]=new Array("top_menu6","常用电话","/bmfw.aspx?lev1id=1","_self");
child_menu[33]=new Array("top_menu6","公共查询","/bmfw.aspx?lev1id=13","_self");
child_menu[34]=new Array("top_menu6","行政事项","/bmfw.aspx?lev1id=2","_self");
child_menu[35]=new Array("top_menu6","教育服务","/bmfw.aspx?lev1id=5","_self");
child_menu[36]=new Array("top_menu6","医疗卫生","/bmfw.aspx?lev1id=11","_self");
child_menu[37]=new Array("top_menu6","社会保障","/bmfw.aspx?lev1id=14","_self");
child_menu[38]=new Array("top_menu6","交通出行","/bmfw.aspx?lev1id=18","_self");
child_menu[39]=new Array("top_menu6","公众服务","/bmfw.aspx?lev1id=19","_self");
child_menu[40]=new Array("top_menu6","旅游服务","/bmfw.aspx?lev1id=20","_self");
child_menu[41]=new Array("top_menu6","法律投诉","/bmfw.aspx?lev1id=21","_self");
child_menu[42]=new Array("top_menu6","社区服务","/bmfw.aspx?lev1id=22","_self");
child_menu[43]=new Array("top_menu7","区政府文件","/zfwj/","_self");
child_menu[44]=new Array("top_menu7","区府办文件","/qfb/","_self");
child_menu[45]=new Array("top_menu7","地方性法规","/dfxfg/","_self");
function doClick_topmenu(o){
	 o.className="menu_over";
	 if(o.id!="top_menu0")
	 {
		 var menu_str="";
		 for(var i=0;i<child_menu.length;i++){;
		   if(child_menu[i][0] == o.id){
			   menu_str+="<div class='child_menu'><a href='"+child_menu[i][2]+"' target='"+child_menu[i][3]+"'>"+child_menu[i][1]+"</a></div>";
		   }
		 }
		 var o_left=$(o).offset().left;
		 var o_top=$(o).offset().top;
		 $("#lev2menu").addClass("lev2m");
		 $("#lev2menu").css("left",o_left);
		 $("#lev2menu").css("top",o_top+25);
		 $("#lev2menu").css("z-index",5);
		 $("#lev2menu").html(menu_str);
		 $("#lev2menu").show();
//		 document.getElementById("lev2menu").innerHTML=menu_str;
//		 document.getElementById("lev2menu").style.display='';
	 }
	 else
	 {
		 $("#lev2menu").hide();
	 }
}
	 
function outClick_topmenu(o)
{
	o.className="menu_out";
}
$(document).ready(function() {
						   $(document).click(function(){
											$("#lev2menu").hide();
											});
						   $("#lev2menu").mouseout(function(){
								   $("#lev2menu").hide();
								   });
						   $("#lev2menu").mouseover(function(){
															 $("#lev2menu").show();
															 });
						   });
$("#lev2menu").hide();
