var topDiv = 10;

$(document).ready(function() {  
  $("#navigation-in").find("ul").find("li").hover(function() {
    $("#navigation-in").find("ul").find("li.active:first").addClass("unactive");  
  }, function() {
    $("#navigation-in").find("ul").find("li.active:first").removeClass("unactive");
  });
  $("#navigation-in").find("ul").find("li").find("ul").mousemove(function() {
    $("#navigation-in").find("ul").find("li.active:first").addClass("unactive");  
  });
  $("#navigation-in").find("ul").find("li:has(ul:hidden)").hover(function(e) {
    $("#navigation-in").find("ul").find("li.active:first").addClass("unactive");  
    $(this).find('a:first').addClass('hover');
    $(this).find('ul:first').css("z-index", topDiv);
    topDiv++;    
    $(this).find('ul:first').hoverFlow(e.type, {height: 'show'}, 300);
  }, function(e) {
    $("#navigation-in").find("ul").find("li.active:first").removeClass("unactive");
    $(this).find('a:first').removeClass('hover');    
    $(this).find('ul:first').hoverFlow(e.type, {height: 'hide'}, 300);
  });
  
  $('.gallery a').lightBox();
  
});
