tell application "Safari" activate set i to 0 repeat while (i < 10) set page to i as string set the target_URL to "http://docs.info.apple.com/jarticle.html?path=AppleScript/2.1/jp/as" & page & ".html" open location target_URL delay 5 set i to (i + 1) end repeat end tell