You want just enough organization to make sense, but not more than is needed!
General Structure
I've run into this issue with a site I'm redoing, and that is that while it may make sense to have :
/academics/classrooms/kindergarten/ka/index.html
It would be far more simpler to have:
/academics/kindergarten/ka.html.
(See this for details).
The reason that's a problem is that there have been times where the wrong index.html was overwritten by the person that's maintaining the static site while I build the dynamic backend and port the front-end to be more maintainable.
Scripts
With regards to scripts, you want them in one folder, and you want to lock down access to that folder (read access, and no peering at the directory structure).
CSS
With CSS, it makes much more sense to have a central CSS document, in one place, to facilitate ease of updating.
Resources
With regards to images, it makes to have each subject's images located logically within the root of that structure. For me, that means /academics/classrooms/kindergarten/images/ .
There is such a thing as too much organization, and such a thing as not-enough. Based on empirical experience, you want to land somewhere between where I've landed and where you started out.