$(document).ready(function(){
	// Set external links
	$('a[rel=external], a.neues_fenster, a.download').attr({ 
		target: "_blank"
	});
	
	// Lightbox starten
	$("#marginal a[rel^=lightbox]").colorbox({transition:"fade", current: "Bild {current} von {total}"});
	
	// Mouseover
	$("table.events tr").mouseover(function () {
		$(this).find("td").toggleClass("hover");
  });
	$("table.events tr").mouseout(function () {
		$(this).find("td").toggleClass("hover");
  });
	
	startList();
});

/**
* Show the language layer in IE6 (no li:hover)
*/
startList = function() {
if (document.all && document.getElementById) {
navRoot = document.getElementById("navi-meta");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
