$(function(){

	$("#nav dl").each(function(i){
		$(this).find("dd").hide();
		this.position = i+1;
	});
	
	$("#summary div a").each(function(i){
		this.position = i+1;
	});
	
	$("#nav dl").hover(
		function(){
			$(this).find("dt a").addClass("hover").parent().next().show();
			$("#summary [@position="+this.position+"]").addClass("hover");
		},
		
		function(){
			$("#nav dl dt a").removeClass("hover").parent().next().hide();
			$("#summary div a").removeClass("hover");
		}
	);
	
	$("#summary a").hover(
		function(){
			$("#nav [@position=" + this.position + "] dt a").addClass("hover").parent().next().show();
		},
		function(){
			$("#nav dl dt a").removeClass("hover").parent().next().hide();
			$("#summary div a").removeClass("hover");
		}
	);
});
/*
$(function(){
		var attrHref=$("#galerie a").attr("href");
		$("#galerie a").attr("href",attrHref+"?KeepThis=true&TB_iframe=true&height=708&width=1000");
});
*/
