$(document).ready(function(){

// Nav
  $('ul.nav-menu').superfish({delay: 200});

// Gallery
  $('#home-gall li').click(function(){
   if (!$(this).hasClass('active')) {
    $('#home-gall li').removeClass('active');
    $(this).addClass('active');
    $('#home-gall .img').fadeOut('fast');
    $(this).find('.img').fadeIn();
   }
  }).filter(':first').click();

// Auto interval
  var autoadvance = true;
  $('#home-gall').mouseover(function(){
    autoadvance = false;
  }).mouseout(function(){
    autoadvance = true;
  });

  setInterval(function(){
    if(autoadvance){
      if($('#home-gall li:last-child').hasClass('active')){
        $('#home-gall li:first-child').click();
      } else {
        $('#home-gall li.active').next().click();
      }
    }
  }, 4000);

});
