jQuery(document).ready(function(){
  
  
  jQuery("#languageWrap").mouseover(function() {
    jQuery("#box_lang").show();
  });
  
  jQuery("#languageWrap").mouseout(function() {
    jQuery("#box_lang").hide();
  });
  
  jQuery(".toplink").click(function(){
    jQuery(window).scrollTop(0);
  });
  
});

