var indexComments = new Array() 

indexComments[0] = "<i>Elegant, yet unpretentious ambiance. Unsurpassed attention to detail. Friendly, accommodating hosts. This is the stuff great country inns are made of, and Abingdon Manor in Latta impressively makes the grade.</i><br /> <b>Morning News</b>"
indexComments[1] = "<i>The best place to stay on the east coast.</i><br /><b>A.I. NJ & FL</b>"
indexComments[2] = "<i>Once in a while in life something truly grand happens, thanks for making this most unique great experience.</i><br /><b>W.D. Charleston, SC</b>"

// do not edit anything below this line

var p = indexComments.length;
var whichComment = Math.round(Math.random()*(p-1));
function writeCommentIndex(){
document.write(indexComments[whichComment]);
}