 $(document).ready(function() {
   $('#switcher .button').bind('click', function() {
     $('body').removeClass();
     if (this.id == 'switcher-narrow') {
       $('body').addClass('narrow');
     }
     else if (this.id == 'switcher-large') {
       $('body').addClass('large');
     }
     
     $('#switcher .button').removeClass('selected');
     $(this).addClass('selected');
   });
 });