

var submenu=new Array()

//Set submenu contents. Expand as needed. For each content, make sure everything exists on ONE LINE. Otherwise, there will be JS errors.Las Le&ntilde;as
 
submenu[0]='<div><a href="Restaurants.shtml">Restaurants </a> - <a href="Theatres.shtml">Museums and Theatres</a> - <a href="Plazas.shtml"> Parks/Plazas - <a href="Wineries.shtml">Wine Map - <a href="Golf.shtml">Golf Clubs</a> - <a href="Cacheuta.shtml">Cacheuta</a> - <a href="LasLenas.shtml">Skiing Centres</a> - <a href="Chacras.shtml"> Chacras de Coria - <a href="Rafting.shtml"> Rafting </a> - <a href="Potri.shtml"> Potrerillos - <a href="Aconcagua.shtml">Aconcagua - </div>'

submenu[1]='<div class="other"><a href="BuenosAires.shtml">Buenos Aires - <a href="pmoreno.shtml">Perito Moreno - <a href="Iguazu.shtml">Iguazu-</div>'
submenu[2]='<div class="other"><a href="Travel.shtml">Visa Requirements</a> - <a href="CarRent.shtml">Car Rent</a> - <a href="Airtravel.shtml">Air/Land Travel</a></div>'
submenu[3]='<div class="identifier" ><a href="Wineries.shtml">Wine Map </a></div>'
submenu[4]=''
//Set delay before submenu disappears after mouse moves out of it (in milliseconds)
var delay_hide=500

/////No need to edit beyond here

var menuobj=document.getElementById? document.getElementById("describe") : document.all? document.all.describe: ""
function showit(which){
clear_delayhide()
thecontent=(which==-1)? "" : submenu[which]
if (document.getElementById||document.all)
menuobj.innerHTML=thecontent
else if (document.layers){
menuobj.document.write(thecontent)
menuobj.document.close()
}
}

function resetit(e){
if (document.all&&!menuobj.contains(e.toElement))
delayhide=setTimeout("showit(-1)",delay_hide)
else if (document.getElementById&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhide=setTimeout("showit(-1)",delay_hide)
}

function clear_delayhide(){
if (window.delayhide)
clearTimeout(delayhide)
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}



