$(function()
{
    $('#panel ul.lang-select li.lang').hover(function()
    {
        $( this ).find( 'a' ).addClass('hover');
    }, function()
    {
        $( this ).find( 'a' ).removeClass('hover');
    });

    $('#panel ul.lang-select li.lang > a').click(function()
    {
        var width = $( this ).width() + 30;

        $( this ).next().toggleClass('hidden').width( width ).find( 'a' ).width( width - 10 );

        return false;
    });

    $('#panel ul.lang-select li.lang div.combo ul li a').click(function()
    {
        $( this ).parent().parent().find( 'li.hidden' ).removeClass( 'hidden' );

        $( this ).parent().addClass( 'hidden' );

        $( this ).parents( 'div.combo' ).toggleClass( 'hidden' ).prev().find('span').text( $( this ).text() );

        return false;
    });
});