Simple linking from flash menu

Hi All, I’ve been having some trouble finishing off my (very basic really) website and the main reason is because i can’t get the links to work from the flash menu that i have. I didn’t write the flash, but managed to edit up everything else i needed except for this!

this is the website

http://www.martinmulholland.com/video.html

the menu i’m talking about is the one on the right

as you can see all the lights are on, and i’ve got HTML pages ready for those links to go to, but can’t figure out how to script flash to make it work

here is the code from the SWF file, the rest is just play and stop commands, this is the meat of it, i’m using Flash CS3 but its older stuff (AS1 or 2 i think)

on (rollOver) {
if (_root.link<>1) {
this.gotoAndPlay(“s1”);
}
}
on (releaseOutside, rollOut) {
if (_root.link<>1) {
this.gotoAndPlay(“s2”);
}
}
on (release) {
if (_root.link<>1) {
_root[“item”+_root.link].gotoAndPlay(“s2”);
_root.link = 1;
}
}