// --------------------
function LoadImages(){
// --------------------
  MM_preloadImages('top/img/te.gif');
}
// --------------------
function MenuOver(id){
// --------------------
	id.style.backgroundColor="#DDFCA5"; // FFC68C
	id.style.backgroundImage="url(top/img/te.gif)";
	id.style.backgroundPosition="right bottom";
	id.style.backgroundRepeat="no-repeat";
	id.style.color="#EF7000"; // F18E23
	id.style.borderColor="#FE983E #EF7000 #EF7000 #FE983E"; // F03010
	// id.style.fontWeight="bold";
}
// --------------------
function MenuOut(id){
// --------------------
	id.style.backgroundColor="#ffffff";
	id.style.backgroundImage="none";
	id.style.color="#292FB1"; // 3D42B5
	id.style.borderColor="white Gray Gray white";
	// id.style.fontWeight="normal";
}
