// JavaScript Dokument: Nach dem Laden der Seite ausgeführt

window.onload = function()
{


	// Bild merken
	//var urBild = window.document.getElementById("image1").src;
	var urBild = window.document.getElementById("navi-menu").getAttribute("src");



	// Mit Maus über Bild fahren
	window.document.getElementById("n1").onmouseover = function()
	{
		//window.document.getElementById("image1").src="images/image2.jpg";
		window.document.getElementById("n1").setAttribute("src", "layout/martin_2.jpg");
	}

	// Mit Maus aus Bild fahren
	window.document.getElementById("n1").onmouseout = function()
	{
		//window.document.getElementById("image1").src=urBild;
		window.document.getElementById("n1").setAttribute("src", "layout/martin_2.jpg");
	}
	
	
	
	// Mit Maus über Bild fahren
	window.document.getElementById("n2").onmouseover = function()
	{
		//window.document.getElementById("image1").src="images/image2.jpg";
		window.document.getElementById("n2").setAttribute("src", "layout/strobel_2.jpg");
	}

	// Mit Maus aus Bild fahren
	window.document.getElementById("n2").onmouseout = function()
	{
		//window.document.getElementById("image1").src=urBild;
		window.document.getElementById("n2").setAttribute("src", "layout/strobel_2.jpg");
	}
	
	
	// Mit Maus über Bild fahren
	window.document.getElementById("n3").onmouseover = function()
	{
		//window.document.getElementById("image1").src="images/image2.jpg";
		window.document.getElementById("n3").setAttribute("src", "layout/graphic_2.jpg");
	}

	// Mit Maus aus Bild fahren
	window.document.getElementById("n3").onmouseout = function()
	{
		//window.document.getElementById("image1").src=urBild;
		window.document.getElementById("n3").setAttribute("src", "layout/graphic_1.jpg");
	}
	
	
	
	// Mit Maus über Bild fahren
	window.document.getElementById("n4").onmouseover = function()
	{
		//window.document.getElementById("image1").src="images/image2.jpg";
		window.document.getElementById("n4").setAttribute("src", "layout/photo_2.jpg");
	}

	// Mit Maus aus Bild fahren
	window.document.getElementById("n4").onmouseout = function()
	{
		//window.document.getElementById("image1").src=urBild;
		window.document.getElementById("n4").setAttribute("src", "layout/photo_1.jpg");
	}
	
	
	
	// Mit Maus über Bild fahren
	window.document.getElementById("n6").onmouseover = function()
	{
		//window.document.getElementById("image1").src="images/image2.jpg";
		window.document.getElementById("n6").setAttribute("src", "layout/about_2.jpg");
	}

	// Mit Maus aus Bild fahren
	window.document.getElementById("n6").onmouseout = function()
	{
		//window.document.getElementById("image1").src=urBild;
		window.document.getElementById("n6").setAttribute("src", "layout/about_1.jpg");
	}
	
	
	
	
	
	
	
	
	// Bild merken
	//var urBild = window.document.getElementById("image1").src;
	var urBild = window.document.getElementById("footer-social").getAttribute("src");




	// Mit Maus über Bild fahren
	window.document.getElementById("f1").onmouseover = function()
	{
		//window.document.getElementById("image1").src="images/image2.jpg";
		window.document.getElementById("f1").setAttribute("src", "layout/mail-3.png");
	}

	// Mit Maus aus Bild fahren
	window.document.getElementById("f1").onmouseout = function()
	{
		//window.document.getElementById("image1").src=urBild;
		window.document.getElementById("f1").setAttribute("src", "layout/mail-2.png");
	}


	
	// Mit Maus über Bild fahren
	window.document.getElementById("f2").onmouseover = function()
	{
		//window.document.getElementById("image1").src="images/image2.jpg";
		window.document.getElementById("f2").setAttribute("src", "layout/twitter-3.png");
	}

	// Mit Maus aus Bild fahren
	window.document.getElementById("f2").onmouseout = function()
	{
		//window.document.getElementById("image1").src=urBild;
		window.document.getElementById("f2").setAttribute("src", "layout/twitter-2.png");
	}
	
	
	
	// Mit Maus über Bild fahren
	window.document.getElementById("f3").onmouseover = function()
	{
		//window.document.getElementById("image1").src="images/image2.jpg";
		window.document.getElementById("f3").setAttribute("src", "layout/flickr-3.png");
	}

	// Mit Maus aus Bild fahren
	window.document.getElementById("f3").onmouseout = function()
	{
		//window.document.getElementById("image1").src=urBild;
		window.document.getElementById("f3").setAttribute("src", "layout/flickr-2.png");
	}
	
	
	
	// Mit Maus über Bild fahren
	window.document.getElementById("f4").onmouseover = function()
	{
		//window.document.getElementById("image1").src="images/image2.jpg";
		window.document.getElementById("f4").setAttribute("src", "layout/vimeo-3.png");
	}

	// Mit Maus aus Bild fahren
	window.document.getElementById("f4").onmouseout = function()
	{
		//window.document.getElementById("image1").src=urBild;
		window.document.getElementById("f4").setAttribute("src", "layout/vimeo-2.png");
	}
	
	

}

