$(document).ready(function(){
  var bullets = $('#punchline-bullets .bullet');
  var punchlines = $('#punchlines .punchline');
  var bullets_length = bullets.length;
  var current_index = 0;
  $('#punchlines-container').at_intervals(function(){
    $('.active-bullet').removeClass('active-bullet');
    $(bullets[current_index]).addClass('active-bullet');
    $(".active-punchline").removeClass('active-punchline').fadeOut(100, function(){
    });

    $(punchlines).fadeOut(100, function(){
    });
    $(punchlines[current_index]).addClass('active-punchline').fadeIn(1000);

    current_index += 1;
    if(current_index == bullets_length) current_index = 0;
    
  }, {delay: 10000, name: "punchlines"});

  $('#map').gMap({
    //address: 'Dolenica 28 10250 Zagreb Croatia',
    latitude: 45.752762,
    longitude: 15.882261,
    zoom: 13,
    markers: [{
        latitude: 45.752762,
        longitude: 15.882261
    }]
  });

  $('#gallery a').fancybox();
});

