$(document).ready(function() {
  // menu
  $('div#menu>ul>li:has(ul)').webetui_pulldown({aniLen:300, hideDelay:500, slideUp:false, showDelay:0});
  // $('div#menu>ul>li:has(ul)').webetui_pulldown({aniLen:300, hideDelay:500, slideUp:false});

  // slideshow
  $('div.slideshow').slideshow();


// =============
// = impressie =
// =============
  var that;
  $('div.thumbcontainer a.enlarge').click(function(){
    that = this;
    var image = $(this).children('img')
    image.clone().appendTo('.picviewbg');
    // $('.picviewbg img').animate({height: '500px'}, 400, function(){})
    $('.picviewbg img').height('500px');
    $('.picviewbg').fadeIn();
  })
  $('div.picviewbg').click(function(){
    $(this).fadeOut(function(){
      $(this).children('img').remove();
    });
  });
  $('div.thumbcontainer a.enlarge').mouseover(function(){
    $(this).children('img').css('border', '1px solid black');    
  });
  $('div.thumbcontainer a.enlarge').mouseout(function(){
    $(this).children('img').css('border', '1px solid white');    
  });
});
