Thanks for your reply. Here is my action script 3 code



stop();

btn1.gotoAndStop(2);
btn2.gotoAndStop(1);
btn3.gotoAndStop(1);
btn4.gotoAndStop(1);
btn5.gotoAndStop(1);
btn6.gotoAndStop(1);
btn7.gotoAndStop(1);

btn1.addEventListener(MouseEvent.CLICK, gotoLaserLikeLipo);
btn2.addEventListener(MouseEvent.CLICK, gotoCelluite);
btn3.addEventListener(MouseEvent.CLICK, gotoSpecialOffers);
btn4.addEventListener(MouseEvent.CLICK, gotoOtherServices);
btn5.addEventListener(MouseEvent.CLICK, gotoFaq);
btn6.addEventListener(MouseEvent.CLICK, gotoMedia);
btn7.addEventListener(MouseEvent.CLICK, gotoContactUs);

ftbtn1.gotoAndStop(2);
ftbtn2.gotoAndStop(1);
ftbtn3.gotoAndStop(1);
ftbtn4.gotoAndStop(1);
ftbtn5.gotoAndStop(1);
ftbtn6.gotoAndStop(1);
ftbtn7.gotoAndStop(1);

ftbtn11.addEventListener(MouseEvent.CLICK, gotoLaserLikeLipo);
ftbtn12.addEventListener(MouseEvent.CLICK, gotoCelluite);
ftbtn13.addEventListener(MouseEvent.CLICK, gotoSpecialOffers);
ftbtn14.addEventListener(MouseEvent.CLICK, gotoOtherServices);
ftbtn15.addEventListener(MouseEvent.CLICK, gotoFaq);
ftbtn16.addEventListener(MouseEvent.CLICK, gotoMedia);
ftbtn17.addEventListener(MouseEvent.CLICK, gotoContactUs);

hdbtn1.gotoAndStop(2);
hdbtn2.gotoAndStop(1);
hdbtn3.gotoAndStop(1);
hdbtn4.gotoAndStop(1);
hdbtn5.gotoAndStop(1);
hdbtn6.gotoAndStop(1);
hdbtn7.gotoAndStop(1);

hdbtn1.addEventListener(MouseEvent.CLICK, gotoLaserLikeLipo);
hdbtn2.addEventListener(MouseEvent.CLICK, gotoCelluite);
hdbtn3.addEventListener(MouseEvent.CLICK, gotoSpecialOffers);
hdbtn4.addEventListener(MouseEvent.CLICK, gotoOtherServices);
hdbtn5.addEventListener(MouseEvent.CLICK, gotoFaq);
hdbtn6.addEventListener(MouseEvent.CLICK, gotoMedia);
hdbtn7.addEventListener(MouseEvent.CLICK, gotoContactUs);

function gotoLaserLikeLipo(event:MouseEvent):void
{
gotoAndStop("laser-like-lipo");
}
function gotoCelluite(event:MouseEvent):void
{
gotoAndStop("celluite");
}
function gotoSpecialOffers(event:MouseEvent):void
{
gotoAndStop("special-offers");
}
function gotoOtherServices(event:MouseEvent):void
{
gotoAndStop("other-services");
}
function gotoFaq(event:MouseEvent):void
{
gotoAndStop("faqs");
}
function gotoContactUs(event:MouseEvent):void
{
gotoAndStop("contact-us");
}
function gotoMedia(event:MouseEvent):void
{
gotoAndStop("media");
}