http://www.suqums.com/demo/nav.html  仿造flash下拉菜单样式但是,下拉菜单连同子菜单背景把这个图片整体盖住了,代码有些不明白
function show() { 
head.style.borderBottom = "1px solid #DADADA"; 
state.show = true; 
if (state.openObj && state.openObj != tar ) { 
state.openObj.pHidden(); 

content.style.height = "0px"; 
content.style.display = "block"; 
content.style.overflow = "hidden"; 
state.openObj = tar; 
tarH = baseH; 
interval = setInterval(move,10); 
} function move() { 
var dist = (tarH - content.style.height.pxToNum())*speed; 
if (Math.abs(dist) < 1) dist = dist > 0 ? 1: -1; 
content.style.height = (content.style.height.pxToNum() + dist) + "px"; 
if (Math.abs(content.style.height.pxToNum() - tarH) <= range ) { 
clearInterval(interval); 
content.style.height = tarH + "px"; 
if (tarH != 0) { 
showS() 
} else { 
hiddenS(); 




var $ = function($) {return document.getElementById($)}; 
String.prototype.pxToNum = function() {return Number(this.replace("px",""))} 
function getFirstChild(obj) { 
var result = obj.firstChild; 
while (!result.tagName) { 
result = result.nextSibling; 

return result;