function menu_onclick(){
	go_t(this.cells[0].childNodes[0].href);	
}
function menu_onmouseover(){
	this.cells[0].childNodes[0].childNodes[0].src = "img/menu_on.jpg";
	this.cells[1].childNodes[0].style.color = "#95A9F2";
	this.cells[1].childNodes[0].style.textDecoration = "underline";
	this.style.cursor = "hand";
}
function menu_onmouseout(e){
	//if(!e){
	//	e = window.event.toElement;	
	//}
	//if(!is_child_of(this,e)){
		this.cells[0].childNodes[0].childNodes[0].src = "img/menu_off.jpg";
		this.cells[1].childNodes[0].style.color = "#F2D295";
		this.cells[1].childNodes[0].style.textDecoration = "none";
	//}	
}
function build_menu(){
	var menu,i,row
	menu = document.getElementById('menu');
	for(i=0;i<menu.rows.length-2;i++){
		row = menu.rows[i];
		row.onclick = menu_onclick;
		row.onmouseover = menu_onmouseover;	
		row.onmouseout = menu_onmouseout;
		row.style.cursor = "hand";
	}
}	
