﻿
function attachXMenu(objid,bgcolor,overbgcolor,bdcolor){
	var tds=objid.getElementsByTagName('td');
	var isIE = navigator.userAgent.indexOf("MSIE");
	var bdcolor=bdcolor;
	for(var i=0;i<tds.length;i++){
		with(tds[i]){
			onmouseover=function(){
				with(this){
					if(isIE>0){
						filters[0].apply();
					}
					style.background=overbgcolor; //这是鼠标移上去时的背景颜色
					style.border=bdcolor; //边框
					style.color='#ffffff'; //文字颜色
					if(isIE>0){
						filters[0].play();
					}
				}
			}
			onmouseout=function(){
				with(this){
					if(isIE>0){
						filters[0].apply();
					}
					style.background=bgcolor; //这是鼠标离开时的背景颜色
					style.border=bdcolor; //边框
					style.color='#333333'; //文字颜色
					if(isIE>0){
						filters[0].play();
					}
				}
			}
		}
	}
}
