/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


 jQuery(document).ready(function($){

    // Using multiple unit types within one animation.
    $(".box_zum_klappen").click(function(){
      $("#navi_oben").animate({
        height: "35px",
        position:"relative"
      }, 1500 );
$(".navi").fadeIn(1500);
    });

  });
