$(document).ready(function(){
  $('html').addClass('j');
  
  $('.glyphSwitch a.i1').click(function() {
    $('#mainContent').removeClass('glyphsOff');
    $('.glyphSwitch a.i1').addClass('s01');
    $('.glyphSwitch a.ix').removeClass('s01');
    $.cookie('glyphState', 'on');
  });
  $('.glyphSwitch a.ix').click(function() {
    $('#mainContent').addClass('glyphsOff')
    $('.glyphSwitch a.ix').addClass('s01');
    $('.glyphSwitch a.i1').removeClass('s01');
    $.cookie('glyphState', 'off');	
  });
  var glyphState = $.cookie('glyphState');
  if (glyphState == 'off') {
    $('#mainContent').addClass('glyphsOff');	
    $('.glyphSwitch a.ix').addClass('s01');
	$('.glyphSwitch a.i1').removeClass('s01');
  };  
});  
