$(document).ready(function() { $("body,p,body_text,textarea,input,text,error,note,ul,ol,li,h2,h3,h4,quote,spotlight_box,whatsnew_box").css("font-size", $.cookie('textsizer') + 'px'); $('a.orange,a.orangeNorm,a.orangeXL').click(function() { var origElement = $("body").css("font-size"); var textSize = parseFloat(origElement, 10); if ( (this).id == "textSmaller") { textSize -= 2; } else if ( (this).id == "textLarger") { textSize += 2; } else if ( (this).id == "textNormal") { textSize = 11; }; $.cookie('textsizer', textSize, { expires: 7 }); $("body,p,body_text,textarea,input,text,error,note,ul,ol,li,h2,h3,h4,quote,spotlight_box,whatsnew_box").css("font-size", textSize + 'px'); return false; }); });