// JavaScript Document
$(function(){
	$(document.body).removeClass('js-off').addClass('js-on');
	var language_width = 0;
	$('#language>li').each(function(){
		language_width += $(this).outerWidth();
	});
	$('#language').css({width:language_width+1, position:'static', left:'auto' });
});