(153 . 12)(153 . 12)
1776 }
1777 $('#screen-options-wrap').slideToggle('fast', function(){
1778 if ( $(this).hasClass('screen-options-open') ) {
1779 $('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right.gif")'});
1780 $('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right.svg")'});
1781 $('#contextual-help-link-wrap').removeClass('invisible');
1782 $(this).removeClass('screen-options-open');
1783
1784 } else {
1785 $('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right-up.gif")'});
1786 $('#show-settings-link').css({'backgroundImage':'url("images/screen-options-right-up.svg")'});
1787 $(this).addClass('screen-options-open');
1788 }
1789 });
(172 . 11)(172 . 11)
1791 }
1792 $('#contextual-help-wrap').slideToggle('fast', function(){
1793 if ( $(this).hasClass('contextual-help-open') ) {
1794 $('#contextual-help-link').css({'backgroundImage':'url("images/screen-options-right.gif")'});
1795 $('#contextual-help-link').css({'backgroundImage':'url("images/screen-options-right.svg")'});
1796 $('#screen-options-link-wrap').removeClass('invisible');
1797 $(this).removeClass('contextual-help-open');
1798 } else {
1799 $('#contextual-help-link').css({'backgroundImage':'url("images/screen-options-right-up.gif")'});
1800 $('#contextual-help-link').css({'backgroundImage':'url("images/screen-options-right-up.svg")'});
1801 $(this).addClass('contextual-help-open');
1802 }
1803 });