Get rid of the highlighted and change the red to _self:
Code:
var anylinkmenu4={divclass:'anylinkmenu', inlinestyle:'width:115px; background:#555555', linktarget:'_new'} //Second menu variable. Same precaution.
anylinkmenu4.items=[
["Dermatología","dermatologia.html",target="_self/"],
["Láser", "http://www.msnbc.com/"],
["Botox", "http://www.google.com/"],
["Ácido Hialurónico", "http://www.google.com/"],
["Medicina Estética", "http://www.google.com/"],
["Infiltraciones", "http://www.google.com/"],
["Cosmética", "http://news.bbc.co.uk"] //no comma following last entry!
]
So you end up with:
Code:
var anylinkmenu4={divclass:'anylinkmenu', inlinestyle:'width:115px; background:#555555', linktarget:'_self'} //Second menu variable. Same precaution.
anylinkmenu4.items=[
["Dermatología","dermatologia.html"],
["Láser", "http://www.msnbc.com/"],
["Botox", "http://www.google.com/"],
["Ácido Hialurónico", "http://www.google.com/"],
["Medicina Estética", "http://www.google.com/"],
["Infiltraciones", "http://www.google.com/"],
["Cosmética", "http://news.bbc.co.uk"] //no comma following last entry!
]
Bookmarks