window.onunload = function(){}

$(function(){
	$('.hover, #pagetop, #prev, #next, #toShowcasetop, #onlineshop img').hover(function(){
     $(this).stop(true, false).animate({opacity: .5}, {duration: 150, easing: "linear"});
  }, function() {
     $(this).stop(true, false).animate({opacity: 1}, {duration: 350, easing: "linear"});
  });
});

