$(document).ready(function() { if($.cookie('TEXT_SIZE')) { $('body').addClass($.cookie('TEXT_SIZE')); } $('.resizer a').click(function() { var textSize = $(this).parent().attr('class'); $('body').removeClass('smallfont mediumfont largefont').addClass(textSize); $.cookie('TEXT_SIZE',textSize, { path: '/', expires: 10000 }); return false; }); });