(function($) {
  $(function() {
    
    $('.block_project').hover(
      function() {
        $('.overlay', this).stop(true, true).fadeIn(150);
      },
      function() {
        $('.overlay', this).stop(true, true).delay(75).fadeOut(150);
      }
    );
    
    $('.block_l_slideshow').each(function() {
      var s = $('.slideshow', this),
          p = $('.controls', this);
      
      s.cycle({
        fx: 'scrollHorz',
        next: s,
        pager: p,
        manualTrump: false,
        timeout: 0
      });
      
      p.find('a').text('•');
    });
    
  });
})(window.jQuery);
