
var staticTip = new TipObj('staticTip');
var staticTip2 = new TipObj('staticTip2');
var staticTip3 = new TipObj('staticTip3');
var staticTip4 = new TipObj('staticTip4');
var staticTip5 = new TipObj('staticTip5');


//LIENS 1
with (staticTip)
{
 tips.links = new Array(0, 0, 50, 'BAMBI 4 pers','<img src="../images/plan-bambi.jpg" width="153" height="93">');
 template = temp;
 tipStick = 0;
}

//LIENS 2

with (staticTip2)
{ 

 tips.links = new Array(0, 0, 50, ' IRM super Venus 4/6 pers','<img src="../images/plan-svenus.jpg" width="170" height="106">');
 template = temp;
 tipStick = 0;
}
with (staticTip3)
{ 

 tips.links = new Array(0, 0, 50, ' Mobil-Home O\'hara 4/6 pers','<img src="../images/plan-ophea.jpg" width="200" height="130">');
 template = temp;
 tipStick = 0;
}

with (staticTip4)
{ 

 tips.links = new Array(0, 0, 50, ' BK Blue Bird 4/6 pers','<img src="../images/plan-bk.jpg" width="200" height="84">');
 template = temp;
 tipStick = 0;
}
with (staticTip5)
{ 

 tips.links = new Array(0, 0, 50, ' Bungalow 5 pers','<img src="../images/plan-bung.jpg" width="150" height="150">');
 template = temp;
 tipStick = 0;
}






if (isNS4) document.captureEvents(Event.MOUSEMOVE);
document.onmousemove = function(evt)
{

 // Add or remove all your tip objects from here!

 staticTip.track(evt);
 staticTip2.track(evt);
 staticTip3.track(evt);
 staticTip4.track(evt);
  staticTip5.track(evt);

 

 if (isNS4) return document.routeEvent(evt);
}


// A small function that refreshes NS4 on horizontal resize.
var nsWinW = window.innerWidth, nsWinH = window.innerHeight;
function ns4BugCheck()
{
 if (isNS4 && (nsWinW!=innerWidth || nsWinH!=innerHeight)) location.reload()
}

window.onresize = function()
{
 ns4BugCheck();
}
