$(document).ready(function() {
    $('#menu li').mouseover(function() {
        if($('ul', this).length)
            $('ul', this).css('display', 'block');
    });
    
    $('#menu li').mouseout(function() {
       if($('ul', this).length)
            $('ul', this).css('display', 'none'); 
    });
    
    $('#menu li ul a').click(function() {
       var expire = new Date();
       expire.setDate(expire.getDate() + 30);
       document.cookie = 'lang=' + $('img', this).attr('alt') +  '; expires='
        + expire.toUTCString() + '; path=/';
       window.location.reload();
       
       return false;
    }); 
});