
var msg = "Sakonnet Events catering for all types of events, including weddings, cocktail parties, dinner parties, luncheons, brunches, anniversary and birthday parties, holiday parties, corporate functions and memorial services.  Serving Little Compton, Tiverton, Portsmouth, Bristol and surrounding areas in Rhode Island as well as Westport and the Greater Fall River area in Massachusetts.";
var spacer = "     ";
var pos = 0;
function ScrollMessage() {
   window.status = msg.substring(pos, msg.length) + spacer + msg.substring(0, pos);
   pos++;
   if (pos > msg.length) pos = 0;
   window.setTimeout("ScrollMessage()",200);
}
ScrollMessage();


