Navigation buttons error

Hey peeps

My three navigation buttons on my website (‘but1’, ‘but2’, ‘but3’) are programmed to go to each section on my timeline: ‘home’, ‘pics’ and ‘contact’.

However, whenever I click on my homepage button (but1), it doesn’t do anything. The other ones are fine but it’s just the home button that doesn’t seem to link anywhere. My code is below, I appreciate your help!!

 
stop();
but1.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
function mouseDownHandler(event:MouseEvent):void {
gotoAndPlay("home");
}
 
but2.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler2);
function mouseDownHandler2(event:MouseEvent):void {
gotoAndPlay("pics");
}
 
but3.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler3);
function mouseDownHandler3(event:MouseEvent):void {
gotoAndPlay("contact");