function mailto(name, text) {
  mail = name + "@" + "madoqua" + ".de";
  text = (text ? text : mail);
  document.write('<a href="mailto:' + mail + '">' + text + "</a>");
}

window.onload = function() {
        var isIE = navigator.userAgent.toLowerCase().indexOf("msie") > -1;

        dikdik();
}

function logo(value) {
	if (value == 1) {
		$('dikdik').style.backgroundImage = "url(/img/dikdik_ro.gif)";
	} else {
		$('dikdik').style.backgroundImage = "url(/img/dikdik.gif)";
	}
}

function dikdik() {
	dik = $('dikdik');
	dik.style.display = 'block';
	new Effect.Move (dik, { x: 0, y: -90, mode: 'relative'});
}


