Deep linking, no error messages, but buttons wont work

stop();

reel_btn.addEventListener.(MouseEvent.CLICK, onReelClick);
samples_btn.addEventListener.(MouseEvent.CLICK, onSamplesClick);
about_btn.addEventListener.(MouseEvent.CLICK, onAboutClick);
contact_btn.addEventListener.(MouseEvent.CLICK, onContactClick);

function onReelClick(e:MouseEvent):void
{
gotoAndStop(“reel”);
}

function onSamplesClick(e:MouseEvent):void
{
gotoAndStop(“samples”);
}

function onAboutClick(e:MouseEvent):void
{
gotoAndStop(“about”);
}

function onContactClick(e:MouseEvent):void
{
gotoAndStop(“contact”);
}

Basically I’ve followed a tutorial word for word (to the best of my judgment) and I cant get my button’s to operate, the SWF loads fine does everything it’s supposed to other than this, but when the buttons are click nothing happens, can anyone offer any help?