
 /*Jquery*/
 $(document).ready( function(){
			if ($(".toggle").attr('open') == undefined)
				$(".toggle").next().slideToggle();
			$(".toggle").css({'cursor':'pointer'});
			//$(".toggle").eq(0).toggleClass("ah3");
			//$(".toggle").eq(0).next().slideDown();
			$(".toggle").click(function(event){
				$(this).next().slideToggle();
				$(this).toggleClass("aktivh3");
			});
			
			
			$(".togglediv .close").click(function(){
				$(this).parent().slideToggle();
				$(this).parent().prev().toggleClass("ah3");
			}).hover(
					function () {
						$(this).css({'text-decoration' : 'underline'});
					},
					function () {
						 $(this).css({'text-decoration' : 'none'});
					}
			);
			

});
