var RecaptchaOptions = { theme : 'white' };
$(document).ready(function(){
          $('li.headlink').hover(
               function() { $('ul', this).css('display', 'block'); },
               function() { $('ul', this).css('display', 'none'); });
          $('li.menucurrent').hover(
               function() { $('ul', this).css('display', 'block'); },
               function() { $('ul', this).css('display', 'none'); });
          $('td.other_lang_td').hover(
               function() { $('ul.other_lang_ul').css('display', 'block'); },
               function() { $('ul.other_lang_ul').css('display', 'none'); });
     });

