

var staticTip = new TipObj('staticTip');

var staticTip2 = new TipObj('staticTip2');

var staticTip3 = new TipObj('staticTip3');

var staticTip4 = new TipObj('staticTip4');





//LIENS 1

with (staticTip)

{

 tips.links = new Array(0, 0, 300, 'Type BAMBI : 4 berths','<span class="texte_courant">Small mobile home without bathroom.<br>1 bedroom with 1 double bed + 1 bedroom with 2 single beds, kitchenette, eating area, fridg. Garden lounge.');

 template = temp;

 tipStick = 0;

}



//LIENS 2



with (staticTip2)

{ 



 tips.links = new Array(0, 0, 300, ' Type BK Blue bird : 4/6 berths','<span class="texte_courant">1 bedroom with 1 double bed + 1 bedroom with 2 single beds, kitchenette, eating area, fridge, hot water, covers, pillows, crockery for 6 people, separate toilet, shower, garden lounge.');

 template = temp;

 tipStick = 0;

}



with (staticTip3)

{ 



 tips.links = new Array(0, 0, 300, ' Type IRM super venus : 4/5 berths','<span class="texte_courant">1 bedroom with 1 double bed + 1 bedroom with 2 single beds, kitchenette, eating area, fridge, hot water, covers, pillows, crockery for 6 people, separate toilet, shower, garden lounge.');

 template = temp;

 tipStick = 0;

}



with (staticTip4)

{ 



 tips.links = new Array(0, 0, 300, ' Type Bungalow : 5 berths','<span class="texte_courant">1 bedroom with 1 double bed + 1 bedroom with 3 single beds, kitchenette, eating area, fridge, hot water, covers, pillows, crockery for 6 people');

 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); 



 



 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();

}

