// JavaScript Document

function loadModule(pShowLanguageBox) {
	//showElement('id', 'box_language', null, pShowLanguageBox);
	showElement('id', 'box_main_unternehmen', null, false);
	showElement('id', 'box_main_berufe', null, false);
	showElement('id', 'box_main_bewerbung', null, false);
	showElement('id', 'box_main_ausbildungsplaetze', null, false);
	showElement('id', 'box_main_ueberbetriebliche_ausbildung', null, false);
	showElement('id', 'box_main_kontakt', null, false);
}

function hideMenus() {
	showElement('id', 'box_main_unternehmen', null, false);
	showElement('id', 'box_main_berufe', null, false);
	showElement('id', 'box_main_bewerbung', null, false);
	showElement('id', 'box_main_ausbildungsplaetze', null, false);
	showElement('id', 'box_main_ueberbetriebliche_ausbildung', null, false);
	showElement('id', 'box_main_kontakt', null, false);
}

function showMenuUnternehmen() {
	showElement('id', 'box_main_unternehmen', null, true);
	showElement('id', 'box_main_berufe', null, false);
	showElement('id', 'box_main_bewerbung', null, false);
	showElement('id', 'box_main_ausbildungsplaetze', null, false);
	showElement('id', 'box_main_ueberbetriebliche_ausbildung', null, false);
	showElement('id', 'box_main_kontakt', null, false);
}

function showMenuBerufe() {
	showElement('id', 'box_main_unternehmen', null, false);
	showElement('id', 'box_main_berufe', null, true);
	showElement('id', 'box_main_bewerbung', null, false);
	showElement('id', 'box_main_ausbildungsplaetze', null, false);
	showElement('id', 'box_main_ueberbetriebliche_ausbildung', null, false);
	showElement('id', 'box_main_kontakt', null, false);
}

function showMenuBewerbung() {
	showElement('id', 'box_main_unternehmen', null, false);
	showElement('id', 'box_main_berufe', null, false);
	showElement('id', 'box_main_bewerbung', null, true);
	showElement('id', 'box_main_ausbildungsplaetze', null, false);
	showElement('id', 'box_main_ueberbetriebliche_ausbildung', null, false);
	showElement('id', 'box_main_kontakt', null, false);
}

function showMenuAusbildungsplaetze() {
	showElement('id', 'box_main_unternehmen', null, false);
	showElement('id', 'box_main_berufe', null, false);
	showElement('id', 'box_main_bewerbung', null, false);
	showElement('id', 'box_main_ausbildungsplaetze', null, true);
	showElement('id', 'box_main_ueberbetriebliche_ausbildung', null, false);
	showElement('id', 'box_main_kontakt', null, false);
}

function showMenuUeberbetrieblicheAusbildung() {
	showElement('id', 'box_main_unternehmen', null, false);
	showElement('id', 'box_main_berufe', null, false);
	showElement('id', 'box_main_bewerbung', null, false);
	showElement('id', 'box_main_ausbildungsplaetze', null, false);
	showElement('id', 'box_main_ueberbetriebliche_ausbildung', null, true);
	showElement('id', 'box_main_kontakt', null, false);
}

function showMenuKontakt() {
	showElement('id', 'box_main_unternehmen', null, false);
	showElement('id', 'box_main_berufe', null, false);
	showElement('id', 'box_main_bewerbung', null, false);
	showElement('id', 'box_main_ausbildungsplaetze', null, false);
	showElement('id', 'box_main_ueberbetriebliche_ausbildung', null, false);
	showElement('id', 'box_main_kontakt', null, true);
}

function switchMainImage() {
	var image = getElement ('id', 'mainimg');
	var attr  = getAttribute ('id', 'mainimg', null, 'name');

//	alert('Attribut: ' + attr);

	switch (attr) {
		case "img01":
			image.src  = 'img/startpage_02.jpg';
			image.name = 'img02';
			break;
		case "img02":
			image.src  = 'img/startpage_03.jpg';
			image.name = 'img03';
			break;
		case "img03":
			image.src  = 'img/startpage_04.jpg';
			image.name = 'img05';
			break;
		case "img04":
			image.src  = 'img/startpage_01.jpg';
			image.name = 'img01';
			break;
		default:
			image.src  = 'img/startpage_01.jpg';
			image.name = 'img01';
			break;
	}
}
