function menuEffect1(id,work,en,boy){
	if(work=="open"){
		document.getElementById(id).style.border			= "solid 1px #C8C8C8";
		document.getElementById(id).style.background	= "#F4F4F4";
		document.getElementById(id).style.height				= ""+boy+"px";
		document.getElementById(id).style.width				= ""+en+"px";
		
		}
	
	if(work=="close"){
		document.getElementById(id).style.border			= "none";
		document.getElementById(id).style.background	= "none";}
		
}