Do I just insert these new scripts after the other ones in both the HEAD and BODY?
Yep.
As for the .js and .css, you say they can be sourced out from a different directory? Personally, I would like to also make this as clean as possible. So if I can create new folders, please let me know how to do that.
Sure, in that case, you just need to modify the path to the .js inside the code you add to the HEAD section of your page so it points to where the .js file is located. Use an absolute URL if you're not sure the correct path, for example:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="http://mysite.com/myscriptsdirectory/fadeslideshow.js">
/***********************************************
* Ultimate Fade In Slideshow v2.0- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
***********************************************/
</script>
Bookmarks