document.writeln("<LINK href=\"menu.css\" rel=stylesheet>");
document.writeln("<BODY  leftMargin=0 topMargin=0 onload=init();>");
document.writeln("  <SCRIPT language=javascript>");
document.writeln("");
document.writeln("mtDropDown.spacerGif = \"\"; ");
document.writeln("mtDropDown.dingbatOn = \"\"; ");
document.writeln("mtDropDown.dingbatOff = \"\"; ");
document.writeln("mtDropDown.dingbatSize = 12; ");
document.writeln("mtDropDown.menuPadding = 1; ");
document.writeln("mtDropDown.itemPadding = 3; ");
document.writeln("mtDropDown.shadowSize = 2; ");
document.writeln("mtDropDown.shadowOffset = 3; ");
document.writeln("mtDropDown.shadowColor = \"#888\"; ");
document.writeln("mtDropDown.shadowPng = \"\"; ");
document.writeln("mtDropDown.backgroundColor = \"#FFF4F5\"; \/\/背景色");
document.writeln("mtDropDown.backgroundPng = \"\"; ");
document.writeln("mtDropDown.hideDelay = 200; ");
document.writeln("mtDropDown.slideTime = 200; ");
document.writeln("");
document.writeln("mtDropDown.reference = {topLeft:1,topRight:2,bottomLeft:3,bottomRight:4};");
document.writeln("mtDropDown.direction = {down:1,right:2};");
document.writeln("mtDropDown.registry = [];");
document.writeln("mtDropDown._maxZ = 100;");
document.writeln("");
document.writeln("mtDropDown.isSupported = function() {");
document.writeln("if (typeof mtDropDown.isSupported.r == \"boolean\") ");
document.writeln("return mtDropDown.isSupported.r;");
document.writeln("var ua = navigator.userAgent.toLowerCase();");
document.writeln("var an = navigator.appName;");
document.writeln("var r = false;");
document.writeln("if (ua.indexOf(\"gecko\") > -1) r = true; ");
document.writeln("else if (an == \"Microsoft Internet Explorer\") {");
document.writeln("if (document.getElementById) r = true; ");
document.writeln("}");
document.writeln("mtDropDown.isSupported.r = r;");
document.writeln("return r;");
document.writeln("}");
document.writeln("");
document.writeln("mtDropDown.initialize = function() {");
document.writeln("for (var i = 0, menu = null; menu = this.registry[i]; i++) {");
document.writeln("menu.initialize();");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("mtDropDown.renderAll = function() {");
document.writeln("var aMenuHtml = [];");
document.writeln("for (var i = 0, menu = null; menu = this.registry[i]; i++) {");
document.writeln("aMenuHtml[i] = menu.toString();");
document.writeln("}");
document.writeln("document.write(aMenuHtml.join(\"\"));");
document.writeln("}");
document.writeln("");
document.writeln("function mtDropDown(oActuator, iDirection, iLeft, iTop, iReferencePoint, parentMenuSet) {");
document.writeln("");
document.writeln("this.addItem = addItem;");
document.writeln("this.addMenu = addMenu;");
document.writeln("this.toString = toString;");
document.writeln("this.initialize = initialize;");
document.writeln("this.isOpen = false;");
document.writeln("this.show = show;");
document.writeln("this.hide = hide;");
document.writeln("this.items = [];");
document.writeln("");
document.writeln("this.onactivate = new Function(); ");
document.writeln("this.ondeactivate = new Function(); ");
document.writeln("this.onmouseover = new Function(); ");
document.writeln("this.onqueue = new Function(); ");
document.writeln("");
document.writeln("this.index = mtDropDown.registry.length;");
document.writeln("mtDropDown.registry[this.index] = this;");
document.writeln("var id = \"mtDropDown\" + this.index;");
document.writeln("var contentHeight = null;");
document.writeln("var contentWidth = null;");
document.writeln("var childMenuSet = null;");
document.writeln("var animating = false;");
document.writeln("var childMenus = [];");
document.writeln("var slideAccel = -1;");
document.writeln("var elmCache = null;");
document.writeln("var ready = false;");
document.writeln("var _this = this;");
document.writeln("var a = null;");
document.writeln("var pos = iDirection == mtDropDown.direction.down ? \"top\" : \"left\";");
document.writeln("var dim = null;");
document.writeln("");
document.writeln("function addItem(sText, sUrl) {");
document.writeln("var item = new mtDropDownItem(sText, sUrl, this);");
document.writeln("item._index = this.items.length;");
document.writeln("this.items[item._index] = item;");
document.writeln("}");
document.writeln("function addMenu(oMenuItem) {");
document.writeln("if (!oMenuItem.parentMenu == this) throw new Error(\"Cannot add a menu here\");");
document.writeln("if (childMenuSet == null) childMenuSet = new mtDropDownSet(mtDropDown.direction.right, -5, 2, mtDropDown.reference.topRight);");
document.writeln("var m = childMenuSet.addMenu(oMenuItem);");
document.writeln("childMenus[oMenuItem._index] = m;");
document.writeln("m.onmouseover = child_mouseover;");
document.writeln("m.ondeactivate = child_deactivate;");
document.writeln("m.onqueue = child_queue;");
document.writeln("return m;");
document.writeln("}");
document.writeln("function initialize() {");
document.writeln("initCache();");
document.writeln("initEvents();");
document.writeln("initSize();");
document.writeln("ready = true;");
document.writeln("}");
document.writeln("function show() {");
document.writeln("");
document.writeln("if (ready) {");
document.writeln("_this.isOpen = true;");
document.writeln("animating = true;");
document.writeln("setContainerPos();");
document.writeln("elmCache[\"clip\"].style.visibility = \"visible\";");
document.writeln("elmCache[\"clip\"].style.zIndex = mtDropDown._maxZ++;");
document.writeln("");
document.writeln("slideStart();");
document.writeln("_this.onactivate();");
document.writeln("}");
document.writeln("}");
document.writeln("function hide() {");
document.writeln("if (ready) {");
document.writeln("_this.isOpen = false;");
document.writeln("animating = true;");
document.writeln("for (var i = 0, item = null; item = elmCache.item[i]; i++) ");
document.writeln("dehighlight(item);");
document.writeln("if (childMenuSet) childMenuSet.hide();");
document.writeln("slideStart();");
document.writeln("_this.ondeactivate();");
document.writeln("}");
document.writeln("}");
document.writeln("function setContainerPos() {");
document.writeln("var sub = oActuator.constructor == mtDropDownItem; ");
document.writeln("var act = sub ? oActuator.parentMenu.elmCache[\"item\"][oActuator._index] : oActuator; ");
document.writeln("var el = act;");
document.writeln("var x = 0;");
document.writeln("var y = 0;");
document.writeln("var minX = 0;");
document.writeln("var maxX = (window.innerWidth ? window.innerWidth : document.body.clientWidth) - parseInt(elmCache[\"clip\"].style.width);");
document.writeln("var minY = 0;");
document.writeln("var maxY = (window.innerHeight ? window.innerHeight : document.body.clientHeight) - parseInt(elmCache[\"clip\"].style.height);");
document.writeln("");
document.writeln("while (sub ? el.parentNode.className.indexOf(\"mtDropdownMenu\") == -1 : el.offsetParent) {");
document.writeln("x += el.offsetLeft;");
document.writeln("y += el.offsetTop;");
document.writeln("if (el.scrollLeft) x -= el.scrollLeft;");
document.writeln("if (el.scrollTop) y -= el.scrollTop;");
document.writeln("el = el.offsetParent;");
document.writeln("}");
document.writeln("if (oActuator.constructor == mtDropDownItem) {");
document.writeln("x += parseInt(el.parentNode.style.left);");
document.writeln("y += parseInt(el.parentNode.style.top);");
document.writeln("}");
document.writeln("switch (iReferencePoint) {");
document.writeln("case mtDropDown.reference.topLeft:");
document.writeln("break;");
document.writeln("case mtDropDown.reference.topRight:");
document.writeln("x += act.offsetWidth;");
document.writeln("break;");
document.writeln("case mtDropDown.reference.bottomLeft:");
document.writeln("y += act.offsetHeight;");
document.writeln("break;");
document.writeln("case mtDropDown.reference.bottomRight:");
document.writeln("x += act.offsetWidth;");
document.writeln("y += act.offsetHeight;");
document.writeln("break;");
document.writeln("}");
document.writeln("x += iLeft;");
document.writeln("y += iTop;");
document.writeln("x = Math.max(Math.min(x, maxX), minX);");
document.writeln("y = Math.max(Math.min(y, maxY), minY);");
document.writeln("elmCache[\"clip\"].style.left = x + \"px\";");
document.writeln("elmCache[\"clip\"].style.top = y + \"px\";");
document.writeln("}");
document.writeln("function slideStart() {");
document.writeln("var x0 = parseInt(elmCache[\"content\"].style[pos]);");
document.writeln("var x1 = _this.isOpen ? 0 : -dim;");
document.writeln("if (a != null) a.stop();");
document.writeln("a = new Accelimation(x0, x1, mtDropDown.slideTime, slideAccel);");
document.writeln("a.onframe = slideFrame;");
document.writeln("a.onend = slideEnd;");
document.writeln("a.start();");
document.writeln("}");
document.writeln("function slideFrame(x) {");
document.writeln("elmCache[\"content\"].style[pos] = x + \"px\";");
document.writeln("}");
document.writeln("function slideEnd() {");
document.writeln("if (!_this.isOpen) elmCache[\"clip\"].style.visibility = \"hidden\";");
document.writeln("animating = false;");
document.writeln("}");
document.writeln("function initSize() {");
document.writeln("");
document.writeln("var ow = elmCache[\"items\"].offsetWidth;");
document.writeln("var oh = elmCache[\"items\"].offsetHeight;");
document.writeln("var ua = navigator.userAgent.toLowerCase();");
document.writeln("");
document.writeln("elmCache[\"clip\"].style.width = ow + mtDropDown.shadowSize + 2 + \"px\";");
document.writeln("elmCache[\"clip\"].style.height = oh + mtDropDown.shadowSize + 2 + \"px\";");
document.writeln("");
document.writeln("elmCache[\"content\"].style.width = ow + mtDropDown.shadowSize + \"px\";");
document.writeln("elmCache[\"content\"].style.height = oh + mtDropDown.shadowSize + \"px\";");
document.writeln("contentHeight = oh + mtDropDown.shadowSize;");
document.writeln("contentWidth = ow + mtDropDown.shadowSize;");
document.writeln("dim = iDirection == mtDropDown.direction.down ? contentHeight : contentWidth;");
document.writeln("");
document.writeln("elmCache[\"content\"].style[pos] = -dim - mtDropDown.shadowSize + \"px\";");
document.writeln("elmCache[\"clip\"].style.visibility = \"hidden\";");
document.writeln("");
document.writeln("if (ua.indexOf(\"mac\") == -1 || ua.indexOf(\"gecko\") > -1) {");
document.writeln("");
document.writeln("elmCache[\"background\"].style.width = ow + \"px\";");
document.writeln("elmCache[\"background\"].style.height = oh + \"px\";");
document.writeln("elmCache[\"background\"].style.backgroundColor = mtDropDown.backgroundColor;");
document.writeln("");
document.writeln("elmCache[\"shadowRight\"].style.left = ow + \"px\";");
document.writeln("elmCache[\"shadowRight\"].style.height = oh - (mtDropDown.shadowOffset - mtDropDown.shadowSize) + \"px\";");
document.writeln("elmCache[\"shadowRight\"].style.backgroundColor = mtDropDown.shadowColor;");
document.writeln("");
document.writeln("");
document.writeln("");
document.writeln("elmCache[\"shadowBottom\"].style.top = oh + \"px\";");
document.writeln("elmCache[\"shadowBottom\"].style.width = ow - mtDropDown.shadowOffset + \"px\";");
document.writeln("elmCache[\"shadowBottom\"].style.backgroundColor = mtDropDown.shadowColor;");
document.writeln("}");
document.writeln("");
document.writeln("}");
document.writeln("function initCache() {");
document.writeln("var menu = document.getElementById(id);");
document.writeln("var all = menu.all ? menu.all : menu.getElementsByTagName(\"*\"); ");
document.writeln("elmCache = {};");
document.writeln("elmCache[\"clip\"] = menu;");
document.writeln("elmCache[\"item\"] = [];");
document.writeln("for (var i = 0, elm = null; elm = all[i]; i++) {");
document.writeln("switch (elm.className) {");
document.writeln("case \"items\":");
document.writeln("case \"content\":");
document.writeln("case \"background\":");
document.writeln("case \"shadowRight\":");
document.writeln("case \"shadowBottom\":");
document.writeln("elmCache[elm.className] = elm;");
document.writeln("break;");
document.writeln("case \"item\":");
document.writeln("elm._index = elmCache[\"item\"].length;");
document.writeln("elmCache[\"item\"][elm._index] = elm;");
document.writeln("break;");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("_this.elmCache = elmCache;");
document.writeln("}");
document.writeln("function initEvents() {");
document.writeln("");
document.writeln("for (var i = 0, item = null; item = elmCache.item[i]; i++) {");
document.writeln("item.onmouseover = item_mouseover;");
document.writeln("item.onmouseout = item_mouseout;");
document.writeln("item.onclick = item_click;");
document.writeln("}");
document.writeln("");
document.writeln("if (typeof oActuator.tagName != \"undefined\") {");
document.writeln("oActuator.onmouseover = actuator_mouseover;");
document.writeln("oActuator.onmouseout = actuator_mouseout;");
document.writeln("}");
document.writeln("");
document.writeln("elmCache[\"content\"].onmouseover = content_mouseover;");
document.writeln("elmCache[\"content\"].onmouseout = content_mouseout;");
document.writeln("}");
document.writeln("function highlight(oRow) {");
document.writeln("oRow.className = \"item hover\";");
document.writeln("if (childMenus[oRow._index]) ");
document.writeln("oRow.lastChild.firstChild.src = mtDropDown.dingbatOn;");
document.writeln("}");
document.writeln("function dehighlight(oRow) {");
document.writeln("oRow.className = \"item\";");
document.writeln("if (childMenus[oRow._index]) ");
document.writeln("oRow.lastChild.firstChild.src = mtDropDown.dingbatOff;");
document.writeln("}");
document.writeln("function item_mouseover() {");
document.writeln("if (!animating) {");
document.writeln("highlight(this);");
document.writeln("if (childMenus[this._index]) ");
document.writeln("childMenuSet.showMenu(childMenus[this._index]);");
document.writeln("else if (childMenuSet) childMenuSet.hide();");
document.writeln("}");
document.writeln("}");
document.writeln("function item_mouseout() {");
document.writeln("if (!animating) {");
document.writeln("if (childMenus[this._index])");
document.writeln("childMenuSet.hideMenu(childMenus[this._index]);");
document.writeln("else ");
document.writeln("dehighlight(this);");
document.writeln("}");
document.writeln("}");
document.writeln("function item_click() {");
document.writeln("if (!animating) {");
document.writeln("if (_this.items[this._index].url) ");
document.writeln("location.href = _this.items[this._index].url;");
document.writeln("}");
document.writeln("}");
document.writeln("function actuator_mouseover() {");
document.writeln("parentMenuSet.showMenu(_this);");
document.writeln("}");
document.writeln("function actuator_mouseout() {");
document.writeln("parentMenuSet.hideMenu(_this);");
document.writeln("}");
document.writeln("function content_mouseover() {");
document.writeln("if (!animating) {");
document.writeln("parentMenuSet.showMenu(_this);");
document.writeln("_this.onmouseover();");
document.writeln("}");
document.writeln("}");
document.writeln("function content_mouseout() {");
document.writeln("if (!animating) {");
document.writeln("parentMenuSet.hideMenu(_this);");
document.writeln("}");
document.writeln("}");
document.writeln("function child_mouseover() {");
document.writeln("if (!animating) {");
document.writeln("parentMenuSet.showMenu(_this);");
document.writeln("}");
document.writeln("}");
document.writeln("function child_deactivate() {");
document.writeln("for (var i = 0; i < childMenus.length; i++) {");
document.writeln("if (childMenus[i] == this) {");
document.writeln("dehighlight(elmCache[\"item\"][i]);");
document.writeln("break;");
document.writeln("}");
document.writeln("}");
document.writeln("}");
document.writeln("function child_queue() {");
document.writeln("parentMenuSet.hideMenu(_this);");
document.writeln("}");
document.writeln("function toString() {");
document.writeln("var aHtml = [];");
document.writeln("var sClassName = \"mtDropdownMenu\" + (oActuator.constructor != mtDropDownItem ? \" top\" : \"\");");
document.writeln("for (var i = 0, item = null; item = this.items[i]; i++) {");
document.writeln("aHtml[i] = item.toString(childMenus[i]);");
document.writeln("}");
document.writeln("return \'<div id=\"\' + id + \'\" class=\"\' + sClassName + \'\">\' + ");
document.writeln("\'<div class=\"content\"><table class=\"items\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">\' + ");
document.writeln("\'<tr><td colspan=\"2\"><img src=\"\' + mtDropDown.spacerGif + \'\" width=\"1\" height=\"\' + mtDropDown.menuPadding + \'\"><\/td><\/tr>\' + ");
document.writeln("aHtml.join(\'\') + ");
document.writeln("\'<tr><td colspan=\"2\"><img src=\"\' + mtDropDown.spacerGif + \'\" width=\"1\" height=\"\' + mtDropDown.menuPadding + \'\"><\/td><\/tr><\/table>\' + ");
document.writeln("\'<div class=\"shadowBottom\"><img src=\"\' + mtDropDown.spacerGif + \'\" width=\"1\" height=\"1\"><\/div>\' + ");
document.writeln("\'<div class=\"shadowRight\"><img src=\"\' + mtDropDown.spacerGif + \'\" width=\"1\" height=\"1\"><\/div>\' + ");
document.writeln("\'<div class=\"background\"><img src=\"\' + mtDropDown.spacerGif + \'\" width=\"1\" height=\"1\"><\/div>\' + ");
document.writeln("\'<\/div><\/div>\';");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("mtDropDownSet.registry = [];");
document.writeln("function mtDropDownSet(iDirection, iLeft, iTop, iReferencePoint) {");
document.writeln("");
document.writeln("this.addMenu = addMenu;");
document.writeln("this.showMenu = showMenu;");
document.writeln("this.hideMenu = hideMenu;");
document.writeln("this.hide = hide;");
document.writeln("");
document.writeln("var menus = [];");
document.writeln("var _this = this;");
document.writeln("var current = null;");
document.writeln("this.index = mtDropDownSet.registry.length;");
document.writeln("mtDropDownSet.registry[this.index] = this;");
document.writeln("");
document.writeln("function addMenu(oActuator) {");
document.writeln("var m = new mtDropDown(oActuator, iDirection, iLeft, iTop, iReferencePoint, this);");
document.writeln("menus[menus.length] = m;");
document.writeln("return m;");
document.writeln("}");
document.writeln("function showMenu(oMenu) {");
document.writeln("if (oMenu != current) {");
document.writeln("");
document.writeln("if (current != null) hide(current); ");
document.writeln("");
document.writeln("current = oMenu;");
document.writeln("");
document.writeln("oMenu.show();");
document.writeln("}");
document.writeln("else {");
document.writeln("");
document.writeln("cancelHide(oMenu);");
document.writeln("}");
document.writeln("}");
document.writeln("function hideMenu(oMenu) {");
document.writeln("");
document.writeln("if (current == oMenu && oMenu.isOpen) {");
document.writeln("");
document.writeln("if (!oMenu.hideTimer) scheduleHide(oMenu);");
document.writeln("}");
document.writeln("}");
document.writeln("function scheduleHide(oMenu) {");
document.writeln("");
document.writeln("oMenu.onqueue();");
document.writeln("oMenu.hideTimer = window.setTimeout(\"mtDropDownSet.registry[\" + _this.index + \"].hide(mtDropDown.registry[\" + oMenu.index + \"])\", mtDropDown.hideDelay);");
document.writeln("}");
document.writeln("function cancelHide(oMenu) {");
document.writeln("");
document.writeln("if (oMenu.hideTimer) {");
document.writeln("window.clearTimeout(oMenu.hideTimer);");
document.writeln("oMenu.hideTimer = null;");
document.writeln("}");
document.writeln("}");
document.writeln("function hide(oMenu) { ");
document.writeln("if (!oMenu && current) oMenu = current;");
document.writeln("if (oMenu && current == oMenu && oMenu.isOpen) {");
document.writeln("");
document.writeln("cancelHide(oMenu);");
document.writeln("current = null;");
document.writeln("oMenu.hideTimer = null;");
document.writeln("");
document.writeln("");
document.writeln("oMenu.hide();");
document.writeln("}");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("function mtDropDownItem(sText, sUrl, oParent) {");
document.writeln("this.toString = toString;");
document.writeln("this.text = sText;");
document.writeln("this.url = sUrl;");
document.writeln("this.parentMenu = oParent;");
document.writeln("function toString(bDingbat) {");
document.writeln("var sDingbat = bDingbat ? mtDropDown.dingbatOff : mtDropDown.spacerGif;");
document.writeln("var iEdgePadding = mtDropDown.itemPadding + mtDropDown.menuPadding;");
document.writeln("var sPaddingLeft = \"padding:\" + mtDropDown.itemPadding + \"px; padding-left:\" + iEdgePadding + \"px;\"");
document.writeln("var sPaddingRight = \"padding:\" + mtDropDown.itemPadding + \"px; padding-right:\" + iEdgePadding + \"px;\"");
document.writeln("return \'<tr class=item><td  style=\"\' + sPaddingLeft + \'\" ><img src=a.gif>\' + ");
document.writeln("sText + \'<\/td><td width=\"10\" style=\"\' + sPaddingRight + \'\"><\/td><\/tr>\';");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("function Accelimation(from, to, time, zip) {");
document.writeln("if (typeof zip == \"undefined\") zip = 0;");
document.writeln("if (typeof unit == \"undefined\") unit = \"px\";");
document.writeln("this.x0 = from;");
document.writeln("this.x1 = to;");
document.writeln("this.dt = time;");
document.writeln("this.zip = -zip;");
document.writeln("this.unit = unit;");
document.writeln("this.timer = null;");
document.writeln("this.onend = new Function();");
document.writeln("this.onframe = new Function();");
document.writeln("}");
document.writeln("");
document.writeln("Accelimation.prototype.start = function() {");
document.writeln("this.t0 = new Date().getTime();");
document.writeln("this.t1 = this.t0 + this.dt;");
document.writeln("var dx = this.x1 - this.x0;");
document.writeln("this.c1 = this.x0 + ((1 + this.zip) * dx \/ 3);");
document.writeln("this.c2 = this.x0 + ((2 + this.zip) * dx \/ 3);");
document.writeln("Accelimation._add(this);");
document.writeln("}");
document.writeln("");
document.writeln("Accelimation.prototype.stop = function() {");
document.writeln("Accelimation._remove(this);");
document.writeln("}");
document.writeln("");
document.writeln("Accelimation.prototype._paint = function(time) {");
document.writeln("if (time < this.t1) {");
document.writeln("var elapsed = time - this.t0;");
document.writeln("this.onframe(Accelimation._getBezier(elapsed\/this.dt,this.x0,this.x1,this.c1,this.c2));");
document.writeln("}");
document.writeln("else this._end();");
document.writeln("}");
document.writeln("");
document.writeln("Accelimation.prototype._end = function() {");
document.writeln("Accelimation._remove(this);");
document.writeln("this.onframe(this.x1);");
document.writeln("this.onend();");
document.writeln("}");
document.writeln("");
document.writeln("Accelimation._add = function(o) {");
document.writeln("var index = this.instances.length;");
document.writeln("this.instances[index] = o;");
document.writeln("");
document.writeln("if (this.instances.length == 1) {");
document.writeln("this.timerID = window.setInterval(\"Accelimation._paintAll()\", this.targetRes);");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("Accelimation._remove = function(o) {");
document.writeln("for (var i = 0; i < this.instances.length; i++) {");
document.writeln("if (o == this.instances[i]) {");
document.writeln("this.instances = this.instances.slice(0,i).concat( this.instances.slice(i+1) );");
document.writeln("break;");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("if (this.instances.length == 0) {");
document.writeln("window.clearInterval(this.timerID);");
document.writeln("this.timerID = null;");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("Accelimation._paintAll = function() {");
document.writeln("var now = new Date().getTime();");
document.writeln("for (var i = 0; i < this.instances.length; i++) {");
document.writeln("this.instances[i]._paint(now);");
document.writeln("}");
document.writeln("}");
document.writeln("");
document.writeln("Accelimation._B1 = function(t) { return t*t*t }");
document.writeln("Accelimation._B2 = function(t) { return 3*t*t*(1-t) }");
document.writeln("Accelimation._B3 = function(t) { return 3*t*(1-t)*(1-t) }");
document.writeln("Accelimation._B4 = function(t) { return (1-t)*(1-t)*(1-t) }");
document.writeln("");
document.writeln("Accelimation._getBezier = function(percent,startPos,endPos,control1,control2) {");
document.writeln("return endPos * this._B1(percent) + control2 * this._B2(percent) + control1 * this._B3(percent) + startPos * this._B4(percent);");
document.writeln("}");
document.writeln("");
document.writeln("Accelimation.instances = [];");
document.writeln("Accelimation.targetRes = 10;");
document.writeln("Accelimation.timerID = null;");
document.writeln("		function init() {");
document.writeln("			if (mtDropDown.isSupported()) {");
document.writeln("				mtDropDown.initialize();");
document.writeln("			}");
document.writeln("		}");
document.writeln("");
document.writeln("		");
document.writeln("<\/SCRIPT>");
document.writeln("<table width=\"924\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"left\">");
document.writeln("                <tr>");
document.writeln("                  <td><img src=\"images\/index_r3_c1-1.jpg\" width=\"61\"  height=\"19\" border=\"0\"><\/A><\/SPAN><\/td>");
document.writeln("                  <td><SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu1");
document.writeln("                  href=\"index.asp\"><img src=\"images\/index_r3_c2-1.jpg\" width=\"74\"  height=\"19\" border=\"0\"   onMouseOver=\"mo(this,'index_r3_c2.jpg')\"  onmouseout=\"mo(this,'index_r3_c2-1.jpg')\"><\/A><\/SPAN><\/td>");
document.writeln("                  <td><SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType  id=menu2");
document.writeln("                  href=\"yygk/index.htm\"><img src=\"images\/index_r3_c3-1.jpg\" width=\"89\"  height=\"19\" border=\"0\"   onMouseOver=\"mo(this,'index_r3_c3.jpg')\"  onmouseout=\"mo(this,'index_r3_c3-1.jpg')\"><\/A><\/SPAN><\/td>");
document.writeln("                  <td><SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu3 ");
document.writeln("                  href=\"yydt/index2.asp\"><img src=\"images\/index_r3_c4-1.jpg\" width=\"90\"  height=\"19\" border=\"0\"   onMouseOver=\"mo(this,'index_r3_c4.jpg')\"  onmouseout=\"mo(this,'index_r3_c4-1.jpg')\"><\/A><\/SPAN><\/td>");
document.writeln("                  <td><SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu4 ");
document.writeln("                  href=\"jyzn/index.htm\"><img src=\"images\/index_r3_c9-1.jpg\" width=\"90\"  height=\"19\" border=\"0\"   onMouseOver=\"mo(this,'index_r3_c9.jpg')\"  onmouseout=\"mo(this,'index_r3_c9-1.jpg')\"><\/A><\/SPAN><\/td>");
document.writeln("                  <td><SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu6 ");
document.writeln("                  href=\"kssz/index.asp\"><img src=\"images\/index_r3_c12-1.jpg\" width=\"91\"  height=\"19\" border=\"0\"   onMouseOver=\"mo(this,'index_r3_c12.jpg')\"  onmouseout=\"mo(this,'index_r3_c12-1.jpg')\"><\/A><\/SPAN><\/td>");
document.writeln("                  <td><SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType  ");
document.writeln("                  href=\"zjjs/index.asp\"><img src=\"images\/index_r3_c16-1.jpg\" width=\"89\"  height=\"19\" border=\"0\"   onMouseOver=\"mo(this,'index_r3_c16.jpg')\"  onmouseout=\"mo(this,'index_r3_c16-1.jpg')\"><\/A><\/SPAN><\/td>");
document.writeln("                  <td><SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu9 ");
document.writeln("                  href=\"kyjx/index.asp\"><img src=\"images\/index_r3_c18-1.jpg\" width=\"91\"  height=\"19\" border=\"0\"   onMouseOver=\"mo(this,'index_r3_c18.jpg')\"  onmouseout=\"mo(this,'index_r3_c18-1.jpg')\"><\/A><\/SPAN><\/td>");
document.writeln("                  <td><SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu7 ");
document.writeln("                  href=\"jksq/index.asp\"><img src=\"images\/index_r3_c22-1.jpg\" width=\"90\"  height=\"19\" border=\"0\"   onMouseOver=\"mo(this,'index_r3_c22.jpg')\"  onmouseout=\"mo(this,'index_r3_c22-1.jpg')\"><\/A><\/SPAN><\/td>");
document.writeln("                  <td><SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType id=menu8  ");
document.writeln("                  href=\"jswm/index.asp\"><img src=\"images\/index_r3_c24-1.jpg\" width=\"90\"  height=\"19\" border=\"0\"   onMouseOver=\"mo(this,'index_r3_c24.jpg')\"  onmouseout=\"mo(this,'index_r3_c24-1.jpg')\"><\/A><\/SPAN><\/td>");
document.writeln("                  <td><SPAN ");
document.writeln("                  style=\"COLOR: #000066; HEIGHT: 9px\"><A class=MenuType   ");
document.writeln("                  href=\"xzzx/index.asp\"><img src=\"images\/index_r3_c28-1.jpg\" width=\"84\"  height=\"19\" border=\"0\"   onMouseOver=\"mo(this,'index_r3_c28.jpg')\"  onmouseout=\"mo(this,'index_r3_c28-1.jpg')\"><\/A><\/SPAN><\/td>");
 document.writeln("                  <td><img src=\"images\/index_r3_c30-1.jpg\" width=\"61\"  height=\"19\" border=\"0\"><\/A><\/SPAN><\/td>");
document.writeln("                <\/tr>");
document.writeln("              <\/table>");
document.writeln("<SCRIPT language=javascript>");
document.writeln("if (mtDropDown.isSupported()) {");
document.writeln("	var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);");
document.writeln("	var menu2 = ms.addMenu(document.getElementById(\'menu2\'));");
document.writeln("	menu2.addItem(\' 关于我们\',\'yygk/index.htm\'); ");
document.writeln("	menu2.addItem(\' 医院领导\',\'yygk/index2.htm\'); ");
document.writeln("	menu2.addItem(\' 医院精神\',\'yygk/index2-1.htm\'); ");
document.writeln("	menu2.addItem(\' 共同愿景\',\'yygk/index2-2.htm\'); ");
document.writeln("	menu2.addItem(\' 院容院貌\',\'yygk/index3.asp\'); ");
document.writeln("	menu2.addItem(\' 医院荣誉\',\'yygk/index4.asp\'); ");
document.writeln("	menu2.addItem(\' 地理位置\',\'yygk/index7.htm\'); ");
document.writeln("	menu2.addItem(\' 联系方式\',\'yygk/index8.htm\'); ");
document.writeln("	");
document.writeln("	var menu3 = ms.addMenu(document.getElementById(\'menu3\'));");
document.writeln("	menu3.addItem(\' 医院信息\',\'yydt/index.asp\'); ");
document.writeln("	menu3.addItem(\' 学术活动\',\'yydt/index.asp?sortid=2\'); ");
document.writeln("	menu3.addItem(\' 图片新闻\',\'yydt/index2.asp\'); ");
document.writeln("	menu3.addItem(\' 院方刊物\',\'yydt/index3.asp\'); ");
document.writeln("	");
document.writeln("	var menu4 = ms.addMenu(document.getElementById(\'menu4\'));");
document.writeln("	menu4.addItem(\' 就诊流程\',\'jyzn/index.htm\'); ");
document.writeln("	menu4.addItem(\' 科室分布\',\'jyzn/index2.htm\'); ");
document.writeln("	menu4.addItem(\' 专家门诊表\',\'jyzn/index3.htm\'); ");
document.writeln("	menu4.addItem(\' 挂号须知\',\'jyzn/index4.htm\'); ");
document.writeln("	menu4.addItem(\' 住院须知\',\'jyzn/index5.htm\'); ");
document.writeln("	menu4.addItem(\' 病房分布\',\'jyzn/index6.htm\'); ");
document.writeln("	menu4.addItem(\' 医保政策\',\'jyzn/index7.htm\'); ");
document.writeln("	menu4.addItem(\' 体检中心\',\'jyzn/index8.htm\');");
document.writeln("	");
document.writeln("	var menu6 = ms.addMenu(document.getElementById(\'menu6\'));");
document.writeln("	menu6.addItem(\' 妇瘤科\',\'kssz/detail.asp?id=16\'); ");
document.writeln("	menu6.addItem(\' 产科\',\'kssz/detail.asp?id=10\'); ");
document.writeln("	menu6.addItem(\' 生育技术科\',\'kssz/detail.asp?id=8\'); ");
document.writeln("	menu6.addItem(\' 新生儿科\',\'kssz/detail.asp?id=9\'); ");
document.writeln("	menu6.addItem(\' 普通妇科\',\'kssz/detail.asp?id=15\'); ");
document.writeln("	menu6.addItem(\' 乳腺外科\',\'kssz/detail.asp?id=12\'); ");
document.writeln("	menu6.addItem(\' 保健部\',\'kssz/detail.asp?id=11\'); ");
document.writeln("	");
document.writeln("	var menu7 = ms.addMenu(document.getElementById(\'menu7\'));");
document.writeln("	menu7.addItem(\' 儿童保健\',\'jksq/index.asp\'); ");
document.writeln("	menu7.addItem(\' 妇女保健\',\'jksq/index.asp?sortid=6\'); ");
document.writeln("	menu7.addItem(\' 生殖保健\',\'jksq/index.asp?sortid=7\'); ");
document.writeln("	menu7.addItem(\' 健康咨询\',\'jksq/index.asp?sortid=8\'); ");
document.writeln("	");
document.writeln("	var menu8 = ms.addMenu(document.getElementById(\'menu8\'));");
document.writeln("	menu8.addItem(\' 精神文明\',\'jswm\/index.asp?sortid=26\'); ");
document.writeln("	menu8.addItem(\' 道德讲堂\',\'jswm\/index.asp?sortid=31\'); ");
document.writeln("	menu8.addItem(\' 青年书苑\',\'jswm\/index.asp?sortid=30\'); ");
document.writeln("	");
document.writeln("	var menu9 = ms.addMenu(document.getElementById(\'menu9\'));");
document.writeln("	menu9.addItem(\' 科研管理\',\'kyjx/index.asp?sortid=10\'); ");
document.writeln("	menu9.addItem(\' 科研动态\',\'kyjx/index.asp\'); ");
document.writeln("	menu9.addItem(\' 继教园地\',\'kyjx/index.asp?sortid=11\'); ");
document.writeln("	menu9.addItem(\' 学术交流\',\'kyjx/index.asp?sortid=12\'); ");
document.writeln("	");
document.writeln("	mtDropDown.renderAll();");
document.writeln("	}");
document.writeln("");
document.writeln("<\/SCRIPT>");
document.writeln("<\/body>");
document.writeln("");
