<!--//--><![CDATA[//><!--
UlHandling = new Object();
UlHandling = {
	currentUl: null,
	ausbildung_sub: null,
	kontakt_sub: null,
	ueberuns_sub: null,
	weiterbildung_sub: null,
	
	handleSubOver: function(ul) {
		switch (ul) {
			case 'ausbildung_sub':
				if (UlHandling.currentUl != 'ausbildung') {
					UlHandling.kontakt_sub.style.display		= 'none';
					UlHandling.ueberuns_sub.style.display		= 'none';
					UlHandling.weiterbildung_sub.style.display	= 'none';
					UlHandling.ausbildung_sub.style.display		= 'block';
				}
			break;
			
			case 'kontakt_sub':
				if (UlHandling.currentUl != 'kontakt') {
					UlHandling.ausbildung_sub.style.display		= 'none';
					UlHandling.ueberuns_sub.style.display		= 'none';
					UlHandling.weiterbildung_sub.style.display	= 'none';
					UlHandling.kontakt_sub.style.display		= 'block';
				}
			break;
			
			case 'ueberuns_sub':
				if (UlHandling.currentUl != 'ueberuns') {
					UlHandling.kontakt_sub.style.display		= 'none';
					UlHandling.ausbildung_sub.style.display		= 'none';
					UlHandling.weiterbildung_sub.style.display	= 'none';
					UlHandling.ueberuns_sub.style.display		= 'block';
				}
			break;
			
			case 'weiterbildung_sub':
				if (UlHandling.currentUl != 'weiterbildung') {
					UlHandling.kontakt_sub.style.display		= 'none';
					UlHandling.ausbildung_sub.style.display		= 'none';
					UlHandling.ueberuns_sub.style.display		= 'none';
					UlHandling.weiterbildung_sub.style.display	= 'block';
				}
			break;
			
		}
	},
	
	handleSubOut: function(ul) {
		switch (UlHandling.currentUl) {
			case 'ausbildung':
				UlHandling.ueberuns_sub.style.display		= 'none';
				UlHandling.kontakt_sub.style.display		= 'none';
				UlHandling.weiterbildung_sub.style.display	= 'none';
				UlHandling.ausbildung_sub.style.display		= 'block';
			break;
			
			case 'kontakt':
				UlHandling.ausbildung_sub.style.display		= 'none';
				UlHandling.ueberuns_sub.style.display		= 'none';
				UlHandling.weiterbildung_sub.style.display	= 'none';
				UlHandling.kontakt_sub.style.display		= 'block';
			break;
			
			case 'ueberuns':
				UlHandling.ausbildung_sub.style.display		= 'none';
				UlHandling.kontakt_sub.style.display		= 'none';
				UlHandling.weiterbildung_sub.style.display	= 'none';
				UlHandling.ueberuns_sub.style.display		= 'block';
			break;
			
			case 'weiterbildung':
				UlHandling.ausbildung_sub.style.display		= 'none';
				UlHandling.kontakt_sub.style.display		= 'none';
				UlHandling.ueberuns_sub.style.display		= 'none';
				UlHandling.weiterbildung_sub.style.display	= 'block';
			break;

			default:
				UlHandling.ausbildung_sub.style.display		= 'none';
				UlHandling.kontakt_sub.style.display		= 'none';
				UlHandling.ueberuns_sub.style.display		= 'none';
				UlHandling.weiterbildung_sub.style.display	= 'none';
			break;
		}
	}
}
//--><!]]>

