
/* Javascript Navigation-Toolbox
 * (C) 2004 by 1komma6 GmbH (www.1komma6.com)
 * all rights reserved. Use of this code free, but only with full and intact comments.
 * enhancements to this code must be send to contact@1komma6.com.
 *
 * Authors:
 *	Michael Hoffmann (m.hoffmann@1komma6.com)
 */
 


/* 

// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
/*
	Ändert die Hintergrundfarbe eines Elements
*/

function changeColor(id, color) {
	document.getElementById(id).style.background = color;
}