	function over(id){
		targetElement = document.getElementById(id);
		targetElement.style.background = '#f60 url("ddg/topmenu_bg.jpg")';
		
		targetElement = document.getElementById('s' + id);
		targetElement.style.color = '#000';
		
	}
	function out(id){
		targetElement = document.getElementById(id);
		targetElement.style.background = 'none';
		
		targetElement = document.getElementById('s' + id);
		targetElement.style.color = '#fff';
	}