// JavaScript Document

document.createElement("header");
document.createElement("aside");
document.createElement("footer");
document.createElement("section");
document.createElement("nav");


// DOCUMENT LOAD 

$(function() {
		   
				$('li').click(
								function(){
											myTag=$(this).text();
											$("li:contains("+myTag+")").toggleClass("selected");
											$("section:first > div").removeClass("selected").find("img").stop().animate(
																														  {
																															 left:"-60px",
																															 borderRightWidth:"0px"
																														  }, 500, function() {
																															// Animation complete.
																														  }
																													   );
											$("li.selected").parent().parent().addClass("selected");
											$("div.selected").find("img").stop().animate(
																						  {
																							 left:"-110px",
																							 borderRightWidth:"50px"
																						  }, 500, function() {
																							// Animation complete.
																						  }
																						 
																						);
										  }
							  );
								
	
})


////////////////////////////////////////////////////////////////////////////////////
// FUNKTIONEN //////////////////////////////////////////////////////////////////////

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
