var cookingComments = new Array() 

cookingComments[0] = "<i>A fantastic and fun experience. Patty, your cooking class & skills were wonderful and something I will use in the future. I can't remember when I've enjoyed an afternoon so much.</i><br /><b>J.L. Heathrow, FL</b>"
cookingComments[1] = "<i>Great time! We loved the cooking school AGAIN. We'll be back again next year.</i><br /><b>C.B. Columbia, SC</b>"
cookingComments[2] = "<i>Thank you so much for the fabulous weekend.  We are regretfully leaving but going away so inspired & ready to put to test our newly learned cooking ideas. Never have I had better food! Everything was splendid.</i><br /><b>S.P. Savannah, GA</b>"

// do not edit anything below this line

var p = cookingComments.length;
var whichComment = Math.round(Math.random()*(p-1));
function writeCommentCooking(){
document.write(cookingComments[whichComment]);
}
