$(document).ready(function()
{
//$(".techinfo").hide()		
//$(".prospektinfo").hide()		

$(".klick").mouseup(function()
		{			
		  produkt=$(this).parent().parent().parent();
		  
//		  alert(produkt.attr("class") )
			
		  techinfo=produkt.children().children('.techinfo')
		  		
			techinfo.toggle(function()
			{				
			if(techinfo.is(':hidden')==true)
				{
						produkt.children('ul').children('li:first-child').removeClass("open");	
				}	
				else
				{
						produkt.children('ul').children('li:first-child').addClass("open");	
				}				
			})	   												
   })    
$(".klick2").mouseup(function()
		{			
		  produkt=$(this).parent().parent().parent();
			
		  prospekt=produkt.children().children('.prospektinfo')
		
			prospekt.toggle(
			function()
			{
				if(prospekt.is(':hidden')==true)
				{
					produkt.children('ul').children('li:nth-child(4)').removeClass("open");	
				}	
				else
				{
					produkt.children('ul').children('li:nth-child(4)').addClass("open");	
				}	
			})										
   })       
   
})

