Urgent help needed navigation not working on flash site

Hi I have my flash site here www.paragonmultimedia.com in the products page i have a navigation of 6 buttons on left hand side, when u click on either of the forst to option the other buttons drop down revealing sub menu options, this works fine from the swf.of the products page movie, however when i bring it into the site it doesnt work, the buttons have a code like the one below, is this cause im using _root. tag? can someone plaese help or provide alternative please? thanx

on (release) {
_root.clip5b.gotoAndStop(1);
_root.clip4b.play();
if (_root.clip4._currentframe == 1 && _root.clip3._currentframe == 1 && _root.clip2._currentframe == 1 && _root.clip1._currentframe == 1 && _root.clip6._currentframe == 1) {
_root.clip3.play();
_root.clip2.play();
_root.clip1.play();
_root.clip6.play();
} else {
if (_root.clip4._currentframe == 1 && _root.clip3._currentframe == 1 && _root.clip2._currentframe == 1 && _root.clip1._currentframe == 18 && _root.clip6._currentframe == 18) {
_root.clip3.play();
_root.clip2.play();
} else {
if (_root.clip4._currentframe == 1 && _root.clip3._currentframe == 1 && _root.clip2._currentframe == 18 && _root.clip1._currentframe == 18 && _root.clip6._currentframe == 18) {
_root.clip3.play();
} else {
if (_root.clip4._currentframe == 1 && _root.clip3._currentframe == 18 && _root.clip2._currentframe == 18 && _root.clip1._currentframe == 18 && _root.clip6._currentframe == 18) {
_root.clip3.play();
_root.clip2.play();
_root.clip1.play();
_root.clip6.play();
} else {
if (_root.clip4._currentframe == 18 && _root.clip3._currentframe == 18 && _root.clip2._currentframe == 18 && _root.clip1._currentframe == 18) {
_root.clip4.play();
}
}
}
}
}
}