
  $(document).ready(function() {

      $(function () {
        $('.subnav').each(function () {
          $(this).parent().eq(0).hover(function () {
            $('.subnav:eq(0)', this).slideDown('fast');
          }, function () {
            $('.subnav:eq(0)', this).fadeOut();
          });
        });
      });
    //Resize
       var opts =
      // horizontal Dock with images expanding downwards in the vertical axis...
      { align: 'left',
        distance: 28,
        size: 148,
        fadeIn: 1000
      };
       var opts2 =
       {
       	align: 'middle',
       	distance: 160,
       	size: 100,
       	fadeIn: 1000
       }
       
      jQuery('#center_left').jqDock(opts);
      jQuery('#gruppe_isg').jqDock(opts2);
      jQuery('#gruppe_it').jqDock(opts2);
      jQuery('#gruppe_ip').jqDock(opts2);
      jQuery('#gruppe_esc').jqDock(opts2);
      jQuery('#gruppe_isc').jqDock(opts2);
      jQuery('#gruppe_sss').jqDock(opts2);
      
      $('#pics').cycle({
        fx: 'fade'
      });
  });
