// Hersteller
function showHersteller(name) {
	ajaxChange("leftContent", "herstellerContent.php?hersteller=" + name);
}

// Pictures
function showPic(imgPath, pic, pre) {
	ajaxChange("pic", pre + "_inc/pic.php?imgPath=" + imgPath + "&pic=" + pic + "&pre=" + pre);
}

// Events
function showEvent(name) {
	ajaxChange("leftContent", "events/" + name + ".php");
}

// AJAX
function ajaxChange(divId, path) {

	$(divId).fade({duration: 0.5, from: 1, to: 0, queue: 'front'});
	window.setTimeout(function() {
		new Ajax.Updater(divId, path,
			{
				evalScripts: "true",
				method: "get",
      									      onComplete : function() {
				    $(divId).appear({duration: 0.5, from: 0, to: 1, queue: 'end'});
			  }
			}
		);
			}, 500);
}

function showAddress(elementId, activate) {
	var fE = "&#064;";
	var mailAddress = "info"  + fE + "audio-box" + "." + "de";
	if(activate) {
		document.getElementById(elementId).innerHTML = "<a href='mailto:" + mailAddress + "'>" + mailAddress + "</a>";
	} else {
		document.getElementById(elementId).innerHTML = mailAddress;
	}
}
