1 (function($){$(function(){
4 $("#menu-other").show();
7 $(".display-other").click(function(e) {
10 if ($('#big-pane').length == 0)
11 $("#other-text").show();
12 $("#other-versions").slideUp('fast');
13 $(".menu").removeClass('selected');
16 $("nav .active").removeClass('active');
17 $("body").addClass('with-other-text');
19 $.ajax($(this).attr('data-other'), {
20 success: function(text) {
21 $("#other-text-body").html(text);
22 $("#other-text-waiter").hide();
23 $("#other-text-body").show();
29 $("#other-text-close").click(function(e) {
31 if ($('#big-pane').length == 0)
32 $("#other-text").hide();
33 $("body").removeClass('with-other-text');