$(document).ready(function(){
  $('input.submit').wrap('<div class="submit-wrap"></div>');
  $('input.submit').hover(function() {
    $(this).stop().animate({ // Fade the button out when hovered
      'opacity': 0.01
    }, 500)
  }, function() {
    $(this).stop().animate({ // Fade it back in on mouseout
      'opacity': 1
    }, 500)
  });
})
$(document).ready(function(){
  $('input.next').wrap('<div class="next-wrap"></div>');
  $('input.next').hover(function() {
    $(this).stop().animate({ // Fade the button out when hovered
      'opacity': 0.01
    }, 500)
  }, function() {
    $(this).stop().animate({ // Fade it back in on mouseout
      'opacity': 1
    }, 500)
  });
})
$(document).ready(function(){
  $('.pdf-zip').wrap('<div class="pdf-zip-wrap"></div>');
  $('.pdf-zip').hover(function() {
    $(this).stop().animate({ // Fade the button out when hovered
      'opacity': 0.01
    }, 500)
  }, function() {
    $(this).stop().animate({ // Fade it back in on mouseout
      'opacity': 1
    }, 500)
  });
})
$(document).ready(function(){
  $('.installations').wrap('<div class="installations-wrap"></div>');
  $('.installations').hover(function() {
    $(this).stop().animate({ // Fade the button out when hovered
      'opacity': 0.01
    }, 500)
  }, function() {
    $(this).stop().animate({ // Fade it back in on mouseout
      'opacity': 1
    }, 500)
  });
})
$(document).ready(function(){
  $('.angkor').wrap('<div class="angkor-wrap"></div>');
  $('.angkor').hover(function() {
    $(this).stop().animate({ // Fade the button out when hovered
      'opacity': 0.01
    }, 500)
  }, function() {
    $(this).stop().animate({ // Fade it back in on mouseout
      'opacity': 1
    }, 500)
  });
})
