function swapimage(el, mouseEvent, bActive){
	var a = el.getElementsByTagName("a");
	
	if( mouseEvent == "over"){
		el.style.backgroundImage = 'url("hover_menu_item.gif")';
		//a[0].style.color="black";
	}else if( mouseEvent == "out"){
		if( bActive ){
			el.style.backgroundImage = 'url("active_menu_item.gif")';
			//a[0].style.color="black";
		}else{
			//el.style.backgroundImage = 'url("menu_item.gif")';
			el.style.backgroundImage = '';
			//a[0].style.color="white";
		}
	}
}

function tdlink(el){
	var a = el.getElementsByTagName("a");
	window.location = a[0].href;
}
