$(document).ready(function() {
 
$(".fade").hover(
function(){
	$(this).fadeTo(300, 0.4);
},
function(){
	$(this).fadeTo(500, 1.0);
}
);


$('img.btn').each(function(i) {
    $(this).hover(
      function() { $(this).fadeTo(300, 0.4); },
      function() { $(this).fadeTo(500, 1); }
	  );
  });


$('#gopagetop a').click(function () {
  $(this).blur();
  $('html,body').animate({ scrollTop: 0 }, 500, 'easeOutQuart');
  return false;
});

});


jQuery.easing.easeOutQuart = function (x, t, b, c, d) {return -c * ((t=t/d-1)*t*t*t - 1) + b;}