Applescript to Hide Table Title in Numbers

Any way to hide that annoying table title that shows us at the top of Numbers spreadsheets using Applescript?

tell application "Numbers" to tell document 1 to tell sheet 1 to tell table 1
	set name to ""
end tell

EDIT: Ahhh… this will only work for one table per document. Applying the name “” to more than one table throws an error.

Yes but for the first sheet that works great. Thanks!