select_showen = false;
function show_select(table_obj,for_select)
{  
    
    $('.select_down').each(function(i)
    {
        if($(this).attr('lang')==for_select)
        {
            $(this).width($('#'+for_select+'_id').width()+10);
            $(this).left = $(table_obj).left;
            $(this).toggle();   
            if($(this).css('display')=='none')
                $('.select_down').hide();
            
            
                
        }
    });
    
}

function select_click(li_obj,for_select)
{             
    $('#'+for_select).val($(li_obj).attr('lang'));
    $('#'+for_select+'_id').html($(li_obj).html());
    show_select(li_obj,for_select);
}

