Example Three

Here is an Example of the Ajax Engine using more then one menu system as its source for links.
if no menu id is given the engine defaults to useing every hyper link available on the page when it initializes. this is not recommened
this example takes the content inside the conainer Id'd as "main" from the other pages.

Script:

window.addEvent('domready',function(){
     var thirdAjax = new ajaxEngine('example_three',{
          linksrc: ["menu_one","menu_two"],
          loadFrom: "main"
     });
});