Alright, both of those would be put in the <head> section of the document. So you would switch to Frontpage's HTML view, and insert them as so:
HTML Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>pweenfwpeowpeowepowed (whatever your title is...)</title>
<!-- any other styling or scripting here -->
<style type="text/css">
// put the css here
</style>
<script type="text/javascript" src="sliding.js"></script>
<!-- I suggest pasting the JavaScript into Notepad and saving it as "sliding.js", that way it's an external script and can be edited in one place, as well as stay out of the way in the html... -->
</head>
<body>
<!-- content here, they described how to use it in the content on the dynamic drive page you got it from. If you need help here, ask. -->
</body>
</html>
Bookmarks