function over(e) {
	e.firstChild.firstChild.className = 'tab1over';
	e.firstChild.lastChild.className = 'tab2over';
}

function out(e) {
	e.firstChild.firstChild.className = 'tab1';
	e.firstChild.lastChild.className = 'tab2';
}
