﻿// JScript 文件

function attachXMenu(){
	var tda = document.getElementById("topmenu");
	var tds = tda.getElementsByTagName("span");
    dothis(tds);
    tda = document.getElementById("footmenu");
    tds = tda.getElementsByTagName("span");
    dothis(tds);
}
function dothis(tds)
{
    for(var i=0;i<tds.length;i++){
		with(tds[i]){
			onmouseover=function(){
				with(this){
				    if (style.color!="#ffffff")
				    {
				        style.color='#b43611';
				        style.border='1px solid #b43611'; 
				    }
				}
			}
			onmouseout=function(){
				with(this){
				    if (className != "sel")
				    {
				        if (style.color != "#ffffff")
				            style.color='#FF6204';
				        style.border=''; 
					}
				}
			}
		}
	}

}