    $(function(){
      $('#lang_hun_select').click(function(){
      $.cookie('lang', 'hun', { expires: 7, path: '/', domain: 'thebest.hu', secure: false });
      window.parent.location.href ='http://thebest.hu';
      });

      $('#lang_eng_select').click(function(){
     $.cookie('lang', 'eng', { expires: 7, path: '/', domain: 'thebest.hu', secure: false });
      window.parent.location.href ='http://thebest.hu';
      });
    });

