$(document).ready(function() { $("body,p,ul,li,body_text,textarea,error,note,ul,ol,li").css("font-size", $.cookie('textsizer') + 'px'); $('a.textSize1,a.textSize2,a.textSize3,a.texttoggler').click(function() { var origElement = $("body").css("font-size"); var textSize = parseFloat(origElement, 10); if ( (this).id == "textSmaller") { textSize = 14; } else if ( (this).id == "textLarger") { textSize += 4; } else if ( (this).id == "textNormal") { textSize += 2; }; $.cookie('textsizer', textSize, { expires: 7 }); $("body,p,body_text,textarea,error,note,ul,ol,li").css("font-size", textSize + 'px'); return false; }); });