//Hover für Startseite
function hover_blau() {
	with ( document.getElementById( "container_blau_oben" ) ) {
		style.backgroundImage = "url(images/streifen_blau.png)";
		
	}
	with ( document.getElementById( "container_blau_mitte" ) ) {
		style.backgroundImage = "url(images/streifen_blau.png)";
		
	}
	with ( document.getElementById( "container_blau_unten" ) ) {
		style.backgroundImage = "url(images/streifen_blau.png)";
		
	}
}
function hover_blau_zurueck() {
	with ( document.getElementById( "container_blau_oben" ) ) {
		style.background = "#7bbdf0";
	}
	with ( document.getElementById( "container_blau_mitte" ) ) {
		style.background = "#7bbdf0";
		
	}
	with ( document.getElementById( "container_blau_unten" ) ) {
		style.background = "#7bbdf0";
		
	}
}
function hover_gruen() {
	with ( document.getElementById( "container_gruen_oben" ) ) {
		style.backgroundImage = "url(images/streifen_gruen.png)";
	}
	with ( document.getElementById( "container_gruen_mitte" ) ) {
		style.backgroundImage = "url(images/streifen_gruen.png)";
		
	}
	with ( document.getElementById( "container_gruen_unten" ) ) {
		style.backgroundImage = "url(images/streifen_gruen.png)";
		
	}
}
function hover_gruen_zurueck() {
	with ( document.getElementById( "container_gruen_oben" ) ) {
		style.background = "#ccff66";
	}
	with ( document.getElementById( "container_gruen_mitte" ) ) {
		style.background = "#ccff66";
		
	}
	with ( document.getElementById( "container_gruen_unten" ) ) {
		style.background = "#ccff66";
		
	}
}