InDesign CS3 Scripting Question

I am trying to create an applescript that will take an existing InDesign document with one section containing multiple pages and make each page in that document a one page section. I can not find the correct property to set to make this work. Has anyone done anything similar to this before?

Browser: Safari 531.21.10
Operating System: Mac OS X (10.6)

Hi. Given that you have only one section, there is no property to set; you must create the element to style it.

tell application "InDesign CS"'s document 1 to repeat with x from 2 to count pages --assumed is page 1 is section 1's start
	make section with properties {page start:(page x)}
end repeat

Thanks Marc. That works perfect!