// This function decodes any string // that's been encoded using URL encoding technique function URLDecode(psEncodeString) { // Create a regular expression to search all +s in the string var lsRegExp = /\+/g; // everything after a line break // var brRegExp = /%3Cbr%3E.*$/mg; // tags //var stRegExp = /<\/?strong>/gi; // Return the decoded string //var text1 = String(psEncodeString).replace(brRegExp, ""); var text1 = String(psEncodeString); var text2 = unescape(text1.replace(lsRegExp, " ")); return text2; } document.write("
"); document.write(''); document.write('
photo of Jonathan Nutting

Jonathan Nutting

'); document.write('Class Year: '); document.write(URLDecode('2006')); document.write('
'); document.write('Degree/Program: '); document.write(URLDecode('B%2EF%2EA%2E+Fine+Arts%2C+M%2EEd%2E+Secondary+Art+Education')); document.write('
'); document.write('Biography: '); document.write(URLDecode('Jon+first+realized+his+interest+in+education+during+his+many+summers+as+a+camp+counselor%2E+His+background+of+working+with+children+and+his+love+of+the+arts+attracted+Jon+to+Lesley%27s+5%2Dyear+Dual+Degree+because+the+program+would+allow+him+to+pursue+both+passions%2E%3Cbr%3E%0A%3Cbr%3E%0ADuring+his+first+two+and+a+half+years+at+Lesley%2C+Jon%27s+studies+were+focused+on+earning+his+B%2EF%2EA%2E+In+his+junior+year+he+began+working+toward+a+M%2EEd%2E+Both+paths+of+study+were+brought+together+in+his+thesis+project+on+music+visualization%2D+using+music+in+the+classroom+to+help+students+open+up+and+talk+about+themselves%2C+helping+them+create+better+artwork%2E%3Cbr%3E%0A%3Cbr%3E%0AJon+says+that+what%27s+great+about+Lesley+is+that+you+can+focus+on+art+and+education%2E+%22It%27s+important+for+art+teachers+to+be+practicing+artists+so+that+they+don%27t+get+stale%2E%22+Presently%2C+Jon+is+a+substitute+teacher+at+the+Cambridge+Rindge+%26+Latin+High+School+in+Cambridge%2C+Massachusetts%2E+He+also+remains+engaged+with+the+arts+outside+of+the+classroom+through+his+continued+work+in+printmaking%2E')); document.write('
'); document.write('
');