 <!-- Menu
function menuitem(name,link) {
this.name=name;
this.link=link;
}

var items = new Array(
new menuitem("Viviendas de Nueva Promoci&oacute;n","menditxu.php?edad=1"),
//new menuitem("Oferta de Nueva Promoción","oferta_esp.php"),
new menuitem("Viviendas de Segunda mano","menditxu.php?edad=Segunda mano"),
//new menuitem("Ofertas del ultimo mes","menditxu.php?fecha=1mes"), <!-- fecha=1sem - de ultima semana
new menuitem("Informaci&oacute;n sobre La Marina del Pinet","informacion.php"),
new menuitem("Donde estamos","empresa.php")
//new menuitem("Nuestros Servicios","empresa.php"),
//new menuitem("Extras","empresa.php"),
);

function SA_go(i) {
var i;
location.href = items[i].link;
} 

function SA_over(i) {
document.all["item"+i].style.color ="#8F5794";
document.all["item"+i].style.background ="#B2C7E8";
document.all["item"+i].style.listStyleImage = "url(images/bul2.gif)";
}

function SA_out(i) {
document.all["item"+i].style.color ="#306285";
document.all["item"+i].style.background ="";
document.all["item"+i].style.listStyleImage = "";
}

function Menu_Show() {
document.write("<table width='100%' border='0' cellpadding='0' cellspacing='0' bgcolor='#ffffff'><tr><td width='240' valign='top'> <ul type='disc'>");
document.write("<li style='border-top: 1px Solid #FFFFFF;' id='item0' onClick='SA_go(0)' onMouseOver='SA_over(0)' onMouseOut='SA_out(0)'>"+items[0].name+"</li>");
for (var i=1; i<items.length; i++)
document.write("<li id='item"+[i]+"' onClick='SA_go("+[i]+")' onMouseOver='SA_over("+[i]+")' onMouseOut='SA_out("+[i]+")'>"+items[i].name+"</li>");
document.write("</ul></td><td><!--DWLayoutEmptyCell-->&nbsp;</td></tr></table>");
}
//-->



