
 function mouse_over_for_menu(dong,mau_chu,mau_nen,con_tro)
 {
//  dong=document.getElementById(strID); // neu dat doi tuong la id
  if (mau_nen!='') {
	  dong.style.backgroundColor=mau_nen; // mau nen
  }
  if (mau_chu!='') {
  	dong.style.color=mau_chu; // mau chu
  }
if (con_tro) {
  	 dong.style.cursor = "hand"; // kieu chuot
  }

 }

 function mouse_out_for_menu(dong,mau_chu,mau_nen)
 {
//  dong=document.getElementById(strID); // neu dat doi tuong la id
  if (mau_nen!='') {
	  dong.style.backgroundColor=mau_nen; // mau nen
  }
  if (mau_chu!='') {
  	dong.style.color=mau_chu; // mau chu
  }
 }
 


