$(document).ready(
  function() {
    $('.ieonly #fotosport1 #meio .caixa_texto .pontos_explicativos ol li').hover(
      function() {
        $(this).attr('original-background-image', $(this).css('background-image'));
        $(this).attr('original-background-color', $(this).css('background-color'));
        $(this).css('background-image', 'none');
        $(this).css('background-color', 'transparent');
      },
      function() {
        $(this).css('background-image', $(this).attr('original-background-image'));
        $(this).css('background-color', $(this).attr('original-background-color'));
      }
    );
    $('#fotosport1 #meio .caixa_texto .pontos_explicativos ol li').click( 
      function() {
        window.location = $('a', $(this)).attr('href');
      }
    );
    $('.ieonly #fotosport3 #meio .caixa_texto .pontos_explicativos ul li').hover(
      function() {
        $(this).attr('original-background-image', $(this).css('background-image'));
        $(this).attr('original-background-color', $(this).css('background-color'));
        $(this).css('background-image', 'none');
        $(this).css('background-color', 'transparent');
      },
      function() {
        $(this).css('background-image', $(this).attr('original-background-image'));
        $(this).css('background-color', $(this).attr('original-background-color'));
      }
    );
    $('.ieonly #fotosport4 #meio .caixa_texto .pontos_explicativos ol li.olli').hover(
      function() {
        $(this).attr('original-background-image', $(this).css('background-image'));
        $(this).attr('original-background-color', $(this).css('background-color'));
        $(this).css('background-image', 'none');
        $(this).css('background-color', 'transparent');
      },
      function() {
        $(this).css('background-image', $(this).attr('original-background-image'));
        $(this).css('background-color', $(this).attr('original-background-color'));
      }
    );
    $('#fotosport4 #meio .caixa_texto .pontos_explicativos ol li.olli').click( 
      function() {
        window.location = $('a', $(this)).attr('href');
      }
    );
    $('a#downloadthis:first').each(
      function(e) {
        window.location = $(this).attr('href');
      }
    );
  }
);
