$(document).ready(function() {
	$("#logo img, #up").hover(function() {
  		$(this).fadeTo(150, 0.8); 
  		$(this).fadeTo(350, 1.0);
  	}, function() {});
							    
	$("#up").click(function(event) {
    $('html, body').animate({ scrollTop : 0 }, 600);
  });
});
