tabs = {
bg:"",
mouseover: function (tab) {
	tabs.bg = tab.childNodes[1].style.backgroundImage
	tab.childNodes[1].style.backgroundImage = "none";
/*	if (tabs.bg != 'none')
		tab.childNodes[3].style.visibility = "visible";
	$('tabs_sub').style.backgroundColor = tab.childNodes[1].style.backgroundColor;
	$('tabs_sub').style.opacity = 100; */
},
mouseout: function (tab) {
	tab.childNodes[1].style.backgroundImage = tabs.bg;
//	tab.childNodes[3].style.visibility = "hidden";
}
};
