﻿$(document).ready(function () {
  
  var ativo = $('.hidden');
  
  var grande = $('#trabindividual .cloud-zoom');

  $('.trabalhosdacampanha a').click(function(e) {
    e.preventDefault();
    $(this).parent().addClass('hidden');
    ativo.removeClass('hidden');
    ativo = $(this).parent();
    
    grande.attr('href', ativo.children('a').attr('href'));
    grande.children('img').attr('src', ativo.children('a').attr('rel'));
    $('.cloud-zoom, .cloud-zoom-gallery').CloudZoom();
  });
  
  var lupa = $('#lupa-fullscreen');
  var mousetrap = $('.mousetrap');
  
  lupa.bind('mousemove', this, function (event) {
    mousetrap.mousemove(event);
  });
  
  lupa.bind('mouseleave', this, function (event) {
    mousetrap.mouseleave(event);
  });
  
  lupa.bind('mouseenter', this, function (event) {
    mousetrap.mouseenter();
  });
});
