function menuBg(path){
this.m_start=true;/*是否刚开始*/
this.m_path=path;
this.m_next=false;
this.s=function(ck){
	if(ck==true){//选择为菜单时
		document.write('<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td><img src="',
						this.m_path,'pic/m/s0.gif" width="7" height="21"></td><td style="background-image:URL(',
						this.m_path,'pic/m/bg1.gif);height:21;width:60px;padding:1 2 3 2;" valign="bottom" align="center">');
	}else if(this.m_start){/*当项目刚开始不被选择时*/
		document.write('<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td><img src="',
						this.m_path,'pic/m/ss.gif" width="7" height="21"></td><td style="background-image:URL(',
						this.m_path,'pic/m/bg0.gif);height:21;width:60px;padding:1 2 3 2;" valign="bottom" align="center">');
	}else if(this.m_next==true){//当上一个初选择时
		document.write('<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td><img src="',
						this.m_path,'pic/m/s2.gif" width="14" height="21"></td><td style="background-image:URL(',
						this.m_path,'pic/m/bg0.gif);height:21;width:60px;padding:1 2 3 2;" valign="bottom" align="center">');
	}else{//一般情况
		document.write('<table width="100%"  border="0" cellspacing="0" cellpadding="0"><tr><td><img src="',
						this.m_path,'pic/m/s1.gif" width="9" height="21"></td><td style="background-image:URL(',
						this.m_path,'pic/m/bg0.gif);height:21;width:60px;padding:1 2 3 2;" valign="bottom" align="center">');}
	this.m_start=false;
	}
this.e=function(ck){
	if(ck==true){document.write('</td><td><img src="',this.m_path,
			 'pic/m/e0.gif" width="7" height="21"></td></tr></table>');
	}else{document.write('</td><td><img src="',this.m_path,
			 'pic/m/e1.gif" width="11" height="21"></td></tr></table>');}
	this.m_next=ck;
	}
this.f=function(){
	if(this.m_next){document.write('</td><td valign="bottom"><img src="',this.m_path,'pic/m/f1.gif" width="14" height="15">');}
	else{document.write('</td><td valign="bottom"><img src="',this.m_path,'pic/m/f0.gif" width="10" height="11">');}
	this.m_start=true;/*是否刚开始*/
	}
} 


