function tagesdatum() { 
	var d = new Date()
	var Jahresmonat = d.getMonth();
	var Monat = new Array("Januar", "Februar", "M&auml;rz", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember");                   
	document.write( d.getDate() + ". " + Monat[Jahresmonat] + " " + d.getFullYear() );     
}

function iconAendern() {
 
 	var min=1;
 	var max=5;
 
 	var Zufallszahl = Math.round(min+(max-min)*(Math.random()));
	document.getElementById("segeln").style.backgroundImage="url(images/icons/segeln/" + Zufallszahl + ".png)";
	
	var Zufallszahl = Math.round(min+(max-min)*(Math.random()));
	document.getElementById("mountainBike").style.backgroundImage="url(images/icons/mountainbike/" + Zufallszahl + ".png)";
	
	var Zufallszahl = Math.round(min+(max-min)*(Math.random()));
	document.getElementById("tennis").style.backgroundImage="url(images/icons/tennis/" + Zufallszahl + ".png)";

	var Zufallszahl = Math.round(min+(max-min)*(Math.random()));
	document.getElementById("surfen").style.backgroundImage="url(images/icons/surfen/" + Zufallszahl + ".png)";

	var Zufallszahl = Math.round(min+(max-min)*(Math.random()));
	document.getElementById("kinderschwimmen").style.backgroundImage="url(images/icons/kinderschwimmen/" + Zufallszahl + ".png)";

	var Zufallszahl = Math.round(min+(max-min)*(Math.random()));
	document.getElementById("weitereAngebote").style.backgroundImage="url(images/icons/weitereAngebote/" + Zufallszahl + ".png)";

}
 
function addsmiley(smiley) {
	document.kontaktformular.textareaeingabe.value=document.kontaktformular.textareaeingabe.value+' '+smiley;
  	document.kontaktformular.textareaeingabe.focus();
}

function dynamicDriveSurf() {
	document.getElementById('kurse').style.height="30px";
	document.getElementById('preisliste').style.height="30px";		
}

function dynamicDriveSail() {
	document.getElementById('kurse').style.height="30px";
	document.getElementById('preisliste').style.height="30px";		
}

function dynamicDriveKinderschwimmen() {
	document.getElementById('kurse').style.height="30px";
	document.getElementById('hinweis').style.height="30px";
}

function dynamicDriveItem(item) {
	document.getElementById(item).style.height="30px";
}

function dynamicDriveWeiteres() {
	document.getElementById('squash').style.height="30px";
	document.getElementById('mtb-station').style.height="30px";
	document.getElementById('tennis-shop').style.height="30px";
	document.getElementById('golf').style.height="30px";
}

function dynamicDriveBonus() {
	document.getElementById('bonus').style.height="30px";	
}

function dynamicDriveRevierinfos() {
	document.getElementById('infoWind').style.height="30px";
	document.getElementById('infoWellen').style.height="30px";
	document.getElementById('infoTemperaturen').style.height="30px";
	document.getElementById('infoFlaggen').style.height="30px";
	document.getElementById('infoSicherheit').style.height="30px";
}

function dynamicDriveNeptuneSpa() {
	document.getElementById('infoNeptuneSpa').style.height="30px";
}

function dynamicDriveNeptuneInfo() {
	document.getElementById('infoNeptuneLageplan').style.height="30px";
	document.getElementById('webcam').style.height="30px";
}

function zeigen(item) { 
	document.getElementById(item).style.height="auto"; 
}

function hide(item) { 
	document.getElementById(item).style.height="30px"; 
} 



 
