function gif_over(src) {
	src.children.tags('IMG')[0].src=src.children.tags('IMG')[0].src.replace('.gif','r.gif');
} 
function gif_out(src) {
	src.children.tags('IMG')[0].src=src.children.tags('IMG')[0].src.replace('r.gif','.gif');
}

function bg_main_over(td) {
	td.style.color='FF210D';
	td.style.backgroundColor="FFFFFF";

}

function bg_main_out(td) {
	td.style.color='FFFFFF';
	td.style.backgroundColor="FF210D";

}