$(document).ready(function() {
    
   $('tr > td:nth-child(2)').css('text-align', 'center');
   
   $("#contact").click(function() {
       
      var img = $(this).find('img'); 
      
      if(!$(this).hasClass('show')) {
          
          img.attr('src', '/images/find_on.png');                    
          $(this).addClass('show');
          
      } else {
          
          img.attr('src', '/images/find.png');                    
          $(this).removeClass('show');
      }
      
      $("#close2").click();
      $('#icons').toggle();
      
      return false;
   });
   
   $("#download").click(function() {
       
      var img = $(this).find('img'); 
      
      if(!$(this).hasClass('show')) {
          
          img.attr('src', '/images/download_on.png');                    
          $(this).addClass('show');
          
      } else {
          
          img.attr('src', '/images/download.png');                    
          $(this).removeClass('show');
      }
      
      $("#close").click();
      $('#download_info').toggle();
      
      return false;
   });
   
   $("#close").click(function() {
       
      $("#images a#contact img").attr('src', '/images/find.png');
      $("#images a#contact").removeClass('show');
      $("#icons").hide();
      
      return false;
   });
   
   $("#close2").click(function() {
       
      $("#images a#download img").attr('src', '/images/download.png');
      $("#images a#download").removeClass('show');
      $("#download_info").hide();
      
      return false;
   });

});
