/*jQuery(function() {


	// Get your list items
var items = 	jQuery('#lang_sel_list li').find('li');

// The new index order for each item
var order = [2, 1, 3];

// Map the existing items to their new positions        
var orderedItems = 	jQuery.map(order, function(value) {
    return items.get(value);
});

// Clear the old list items and insert the newly ordered ones
	jQuery('#lang_sel_list li').empty().html(orderedItems);

});*/
