/**
 * menu_bg Jun 2008 Version 1.0
 * Maritta Sturt
 * Copyright (c) M. Sturt 
 */


	function ChangeTd(id) {
		if (id == 'td2t') {
			document.getElementById(id).style.background = 'url(Pictures_Layout/bg_menu_up2.gif)';
		}
		else {
			document.getElementById(id).style.background ='url(Pictures_Layout/bg_menu_up.gif)';
		}
	}

	function RestoreTd(id) {
		if (id == 'td2t') {
			document.getElementById(id).style.background ='url(Pictures_Layout/bg_menu_dn2.gif)';
		}
		else {
			document.getElementById(id).style.background ='url(Pictures_Layout/bg_menu_dn.gif)';
		}
	}
	
