this one works with long directory names that have spaces in them:
for /D %d in (*) do md "%d\2006"
the for /D iterates thru every directory below the current directory matching the * in paranthesis and assigns the direcotyr name into the variable %d. you then execute md "%d\2006" to create the 2006 directory as a subdir of %d.