Forum Moderators: open
since the java script has to be in <head> part and each page need to preload their own images.
First off, I like templates. They guarantee uniformity across a site, and allow for easy changes. I build the outer skin then put two comments: <!-- content starts here --> and <!-- content ends here -->
It's rare that I need to change anything outside of those comments. (other than asp code).
What you said above about javascript is not true. You can have the same script for each page, or you could write the function in an external javascript. You would need to update the preload function as you add images, but you really only need 1 preload function on the first page.
No problems with images, just make all your images relative to the route. like: src=/images/etc.gif
With most template systems you can outsource different elements such as footers and nav bars and 'include' them in the template. Thus saving even more time when you need to make global changes...
Nick
Amazing!