// JavaScript Document

function loadModule(pShowLanguageBox) {
	showElement('id', 'box_language', null, pShowLanguageBox);
	showElement('id', 'box_main_company', null, false);
	showElement('id', 'box_main_products', null, false);
	showElement('id', 'box_main_service', null, false);
	showElement('id', 'box_main_news', null, false);
}

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;
	}
}

