<!-- var the text below for scroller
scrtxt="Faby's Country House"+
"  HOLIDAY HOME RENTAL"+
"  sleeps 8-10..."+
"  pool, spa, panoramic setting, 3 bedrooms, large living areas, indoor/outdoor dining, terrace..."+
"  only 65 kms from Rome and airports, circa 1km to hilltop town of Otricoli for shops, services, archeological zone...";
var lentxt=scrtxt.length;
var width=350;
var pos=150-width;
function scorrevole() {
  pos++;
  var scroller="";
  if (pos==lentxt) {
   pos=1-width;
  }
  if (pos<0) {
    for (var i=1; i<=Math.abs(pos); i++) {
      scroller=scroller+" ";}
    scroller=scroller+scrtxt.substring(0,width-i+1);
  }
  else {
    scroller=scroller+scrtxt.substring(pos,width+pos);
  }
  window.status = scroller;
  setTimeout("scorrevole()",170);
  }
//-->
