
jQuery.noConflict();

jQuery(function(){
  jQuery("#bottom .toToptext>a").removeAttr("href");
  jQuery("#bottom .toToptext>a>img").click(function(){
    jQuery('html').animate({scrollTop: 0},1000,'swing');
  });
  
});