tell application "Finder"
set main_folder to (make new folder at desktop with properties ¬
{name:temp_name}) as alias
repeat with this_name in subf_names
set temp_name to this_name
set new_folder to (make new folder at main_folder with properties {name:temp_name})
if temp_name is "Design" then set design_folder to new_folder
end repeat
end tell
tell application "Finder"
set chosen_folder to job_number & j_name
repeat with this_name in subg_names
set temp_name to this_name
make new folder at design_folder with properties {name:temp_name}
end repeat
end tell