<!--

// topNav script
function writeHeaderContact(){
	var strReturn = new String();
	strReturn += ('<p class="contact">For more information, contact Mary Thrasher at 252-453-2260</p>');
	
document.writeln(strReturn);
}
// END opNav script





// topNav script
function writeTopNav(){
	var strReturn = new String();
	strReturn += ('<ul id="topNav"><li class="last"><a href="contact.html">Contact</a></li><li><a href="about.html">About</a></li><li><a href="CateringCookbook.html">Catering Cookbook</a></li><li><a href="planning.html">Planning</a></li><li><a href="services.html">Services</a></li><li><a href="testimonials.html">Testimonials</a></li><li><a href="index.html">Home</a></li></ul>');
	
document.writeln(strReturn);
}
// END opNav script






// Rotating quote Script
var quote=new Array() // do not change this!

// Set up the quotes to be shown, below.
// To add more quotes, continue with the
// pattern, adding to the array.  Remember
// to increment the quote[x] index!

quote[0] = "...it is quite difficult to plan a wedding long distance.  Mary&#8217;s recommendations were extremely thoughtful, pragmatic, and were all wonderfully implemented.<span class='quote'>&#8221;</span><br /><span class='name'>- W. Scott Campbell<br />Charleston, WV";
quote[1] = "We would recommend Mary and her excellent staff to anyone who was planning a wedding or any other type of reception.<span class='quote'>&#8221;</span><br /><span class='name'>- W. Scott Campbell<br />Charleston, WV";
quote[2] = "I wanted to take this opportunity to thank you once again for the superb meal and service you provided our group Sunday night.  I&#8217;ve heard nothing but praise for your exceptional culinary talents and professional operation.<span class='quote'>&#8221;</span><br /><span class='name'>- Julie Cherry<br />Corolla Fire and Rescue Squad, Inc.";
quote[3] = "...the food you prepared was superb.  Some of the favorites were the appetizer brie with berries and the tuna bites. Everything you prepared was excellent.<span class='quote'>&#8221;</span><br /><span class='name'>- Mary Kaya";
quote[4] = "You surpassed our expectations and we received many, many compliments, not only on the food, but on the friendly and efficient helpers you brought along.<span class='quote'>&#8221;</span><br /><span class='name'>- Beth McNally<br />Reston, VA";
quote[5] = "The food was beautifully presented and prepared and we would enthusiastically recommend your services to anyone, whether for a wedding or any other event.  Thank you for making our special day even more memorable...<span class='quote'>&#8221;</span><br /><span class='name'>- Beth K. McNally<br />Reston, VA.";

// ======================================
// Do not change anything below this line
// ======================================
var Q = quote.length;
var whichquote=Math.round(Math.random()*(Q-1));

function showQuoteText(){
document.write('<span class="quote">&#8220;</span>' + quote[whichquote] + '</span>');
}
// END Rotating quote Script






// copyright script
function writeCopyright(){
	var strReturn = new String();
	strReturn += ('This site created and maintained by <a href="http://www.threedogink.com/" target="_blank">Three Dog Ink</a>, publishers of <a href="http://www.outerbanksguides.com/" target="_blank">The Outer Banks Guides</a>.<br />Copyright &nbsp;&#169;2001 - 2006 The Kitchen Witch Catering. All rights reserved.');
	
document.writeln(strReturn);
}
// END copyright script




// 