$j(document).ready(function() {
        $j("body,p,ul,li,body_text,textarea,error,note,ul,ol,li").css("font-size", $j.cookie('textsizer') + 'px');

        $j('a.textSize1,a.textSize2,a.textSize3,a.texttoggler').click(function() {
            var origElement = $j("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;     
            };
            
            $j.cookie('textsizer', textSize, { path: '/', expires: 365 });
            
            $j("body,p,body_text,textarea,error,note,ul,ol,li").css("font-size", textSize + 'px');
            
            return false;
            });
});