$(document).ready(function(){

   $('ul.navi li ul').each(function() {
      $(this).parent().hover(function() {
         $(this).find('ul').stop().css('display','block');
      }, function() {
         $(this).find('ul').stop().css('display','none');
      });
   });
   
   $('.ad-gallery').adGallery({
      loader_image: '/him_media/images/template/loader.gif',
      width: 426,
      height: 275,
      thumb_opacity: 0.99,
      display_next_and_prev: true,
      slideshow: {enable: false},
      callbacks: {
         init: function() {
            $('a.cb').colorbox({rel:'colorbox', current:"Bild {current} von {total}"});
         },
         afterImageVisible: function() {
            context = this;
            $('div.ad-image').find('a').stop().click(function() {
               $('a.cb').eq(context.current_index).click();
            }); 
         }
      }
   });
   
   //$("a.cb").colorbox();

});
