/*	*	info.js	v1.0
	*	Info JS Functions
	*
	*	Copyright (c) 2005, Sebastian Gieseler info@my-byte.de
	*	All rights reserverd.
*/

function initInfo() {

	document.getElementById('TOGGLE_SO_GODI1').onmouseover = function() {
		document.getElementById('SO_GODI_LAY1').style.display = 'block';
	}
	document.getElementById('TOGGLE_SO_GODI1').onmouseout = function() {
		document.getElementById('SO_GODI_LAY1').style.display = 'none';
	}
	document.getElementById('TOGGLE_SO_GODI2').onmouseover = function() {
		document.getElementById('SO_GODI_LAY2').style.display = 'block';
	}
	document.getElementById('TOGGLE_SO_GODI2').onmouseout = function() {
		document.getElementById('SO_GODI_LAY2').style.display = 'none';
	}
	document.getElementById('TOGGLE_SO_GODI3').onmouseover = function() {
		document.getElementById('SO_GODI_LAY3').style.display = 'block';
	}
	document.getElementById('TOGGLE_SO_GODI3').onmouseout = function() {
		document.getElementById('SO_GODI_LAY3').style.display = 'none';
	}
	document.getElementById('TOGGLE_SO_GODI4').onmouseover = function() {
		document.getElementById('SO_GODI_LAY4').style.display = 'block';
	}
	document.getElementById('TOGGLE_SO_GODI4').onmouseout = function() {
		document.getElementById('SO_GODI_LAY4').style.display = 'none';
	}
	document.getElementById('TOGGLE_SO_GODI5').onmouseover = function() {
		document.getElementById('SO_GODI_LAY5').style.display = 'block';
	}
	document.getElementById('TOGGLE_SO_GODI5').onmouseout = function() {
		document.getElementById('SO_GODI_LAY5').style.display = 'none';
	}

}