$(document).ready(function() {
  $('#bodyContent .image a img').load(function(){
    $(this).css({ opacity: 0.6 });
  }).mouseenter(function(){
    $(this).animate({ opacity: 1 }, 300);
  }).mouseleave(function(){
    $(this).animate({ opacity: 0.6 }, 300);
  });
  
  (function(){
    if($('body').hasClass('home')){
      var element = $('#headerCallToAction');
      element.css({ top: '-300px' });
      element.animate({ top: '-15px' }, 1500, 'easeOutBounce');
    }
  })();
});