$(function () {
	//var h = Math.max($('#container').height(),500);
	//$('#container').height(h + (3 - h%3));

	$('#menu')
		.append('<li class="animator" style="position:absolute; left:6px; bottom:0; height:5px; width:100px; background:white;" />')
		.children('li').not('.lang')
			.mouseenter(function () { 
				var t = $(this);
				if(t.is('.animator')) return;
				t.siblings('.animator').stop(true, false).animate({ 'width' : t.width() + 'px', 'left' : t.position().left + 'px' }, 500);
			})
			.mouseleave(function (e) { 
				if($(e.relatedTarget).is('.animator')) return;
				var t = $(this).siblings('.selected');
				if(t.length) {
					t.siblings('.animator').stop(true, false).animate({ 'width' : t.width() + 'px', 'left' : t.position().left + 'px' }, 500);
				}
			});
	$('.autohide').hide().prev().css('cursor','pointer').addClass('hider hider-on').click(function () { $(this).toggleClass('hider-on').next().slideToggle(); });

	$('.selected').mouseenter();
});
