$(document).ready(function(){
	$("#navi_vertikal li").click(function(){
		window.location=$(this).find("a").attr("href"); return false;
	});
});

$(document).ready(function(){
	$("#navi_horizontal li").click(function(){
		window.location=$(this).find("a").attr("href"); return false;
	});
});

$(document).ready(function(){
	$(".produl ul").click(function(){
		window.location=$(this).find("a").attr("href"); return false;
	});
});



$(document).ready(function(){

	$(".prodover tr").click(function(){
		$(this).toggleClass("produktactive");
		$(this).next(".proddesc").slideToggle("fast");

	});
});

$(document).ready(function(){

	$(".proddetailparentul li").click(function(){
		$(this).toggleClass("prodetailulactive");
		$(this).next(".proddetail").slideToggle("fast");

	});
});

$(document).ready(function(){

	$(".anfragelink").click(function(){
		$(".prodanfragebg").toggle("fast");
		$(".prodanfragecontent").toggle("fast");
	});
});

