Applescript and indesign

Hi all,
I am quite new to applescript, I was just wondering if anyone can tell me how to go about writing a simple script for Adobe InDesign CS2 to automate this task.

Open Layout/Numbering & Section Options

Tick checkbox “include prefix when Numbering Pages”

Change pull down menu to “a,b,c,d.”

Click ok button

Thanks in advance to all who reply.

This should get you started, you’ll have to play around with the section Tell - I named my section “1”

tell application "Adobe InDesign CS2"
	set myDoc to the active document
	tell myDoc
		tell section 1
			set properties to {page number style:lower letters, include section prefix:true}
		end tell
	end tell
end tell