function makeArray(n)
{
        this.length=n
        for (i = 0; i <= n; i++)
        {
                this[i]= new Image()
        }
        return this
}
function domenu_on(thismenu) {
	if (document.images) {
		this.document.images[thismenu+1].src = tabon[thismenu-1].src
	}
}
function domenu_off(thismenu) {
	if (document.images) {
		this.document.images[thismenu+1].src = taboff[thismenu-1].src
	}
}

