var count = 0;
var text = "Uplands - Affordable fully furnished cabin to rent.  Located in the southern mountains of scenic West Virginia.  Make your booking today.  ";
scroll( );
function scroll ( ) {
window.status=text.substring (count, text.length)+text.substring (0,count)
if (count<text.length)
count ++;
else
count=0;
setTimeout ("scroll( )", 75);
}
