Need help with nav bar

i found a flash template for a navigation bar and i wanted to use it on my dreamweaver website but i cant seem to figure out how it works. i think my action script is messed up. The navigation bar works fine, but when you press down on one of the links it doesnt take you to that page. please help?

AS

function onLoad(){
var menu :Array = [
{label:“Home”, url:"home.html "},
{label:“News”, url:“news.html”},
{label:“Sports”, url:“sports.html”},
{label:“Features”,url:“features.html”},
{label:“A&E”,url:“a&e.html”},
{label:“Forum”,url:“forum.html”},
{label:“Visionary”,url:“visionary.html”, url:“Help.html”}//
];
simpleMenuBar.addEventListener(‘change’, simpleMenuBarChange)
simpleMenuBar.populateMenu(menu, 0, 0, 2);
simpleMenuBar.selectByIndex(0);

}

function simpleMenuBarChange( obj:MovieClip)
{
// obj.url to get selecteditem’s url
// obj.label to get selecteditem’s label
trace(obj.label);
trace(obj.url);
navigateToURL(obj.url)
}