

$(document).ready(function() {
  
  $('#menu-top-wrapper ul li').mouseover(function() {
    $(this).addClass('hover');
    $(this).find('a').addClass('hover');
  });
  $('#menu-top-wrapper ul li').mouseout(function() {
    $(this).removeClass('hover');
    $(this).find('a').removeClass('hover');
  });
  
  // Lightbox
  $('.lightbox-wrapper').each(function() {
    $(this).find('a').lightBox();
  })


});


