It is reasonable to use one of the ways to provide repeating content across many pages: Repeating regions (Dreamweaver Templates), Library Items, Server Side Include, PHP and so on. There is only one rule to make them all work properly with f-source menus - don't forget to include in the repeating content the three code snippets:
1. Script - <script src='ActiveContent3_2.js'></script> (by default it is located in the head of the page). 2. Navigation settings - DIV with id='menu'. 3. Flash object - DIV with id = 'f-source menu'.
Cut the DIV with id='menu' from a page and paste it in XML file. This file is an ordinary text file with .xml extension. It must contain nothing but the DIV with id='menu'.
Set a path to your XML in the Tag Inspector.
The parameter xml_Path(in Tag Inspector) can be relative (navigation.xml) or absolute
(http://www.yourDomain.com/navigation.xml).
Read detailed instructions here
Create a single Library item with navigation and then reuse it on each page. When you need to make an edit, it’s simply a matter of opening the Library item, making the edit and letting Dreamweaver replicate that edit across all the pages containing the Library item.
1. Create new "Dreamweaver site" (or open existing site).

In the menuLibrary.lbi correct path to the SWF file must looks like : <param name="movie" value="menu.swf" /> ..... <embed src="menu.swf" ......In the test.html correct path to the SWF file will looks like :
<param name="movie" value="Library/menu.swf" /> ..... <embed src="Library/menu.swf" ......Here is example of HTML code inside of the Library item:
<script src='ActiveContent3_2.js'></script> <div id='menu'> <div><a href='http://f-source.com'>Button1</a></div> <div id='submenu'> <div><a href='http://f-source.com'>SubButton1-1</a></div> <div><a href='http://f-source.com'>SubButton1-2</a></div> <div><a href='http://f-source.com'>SubButton1-3</a></div> </div> <div><a href='http://f-source.com'>Button2</a></div> ......... </div> <div id="f-source menu" style="position:absolute; left:0px; top:10px; width:100%; height:45px; z-index:99999;"> <object classid="............













