function do_copyright(company){
	var copyright = new Date();	
	var update = copyright.getFullYear();
	document.write("&copy; Copyright "+update+" "+company+" | All rights reserved");
}

function do_credits(){
	var str = "<div id='hwsDiv'>Design by <a href='http://www.heritagewebdesign.com'>Heritage Web Solutions</a> | <a href='http://www.hwswebcenter.com'>Login</a></div>";
	document.write(str);
}
/*
var testimonials = new Array();
var currTest = 0;
testimonials[0] = "<strong>Porch with Endurance Vinyl Rails, Damascus MD</strong><br/>&quot;Trademark, LLC was professional and thorough from the beginning of the project to the end, and I am so thrilled with the finished product. The porch looks even better than I had imagined. Thanks, Travis!&quot;&nbsp;&nbsp;- Kristen B.";
testimonials[1] = "<strong>All Wood Deck, Derwood MD</strong><br/>&quot;Trademark was very responsive and provided a quality product. The deck is well built and passed the required inspections without any issues. The price of the deck was a great value. They were in and out in less than four work days.&quot;&nbsp;&nbsp;- Jim M.";
testimonials[2] = "<strong>Low Mt. Deck, Clarksburg MD</strong><br/>&quot;I called on the Tuesday to say you can start. He started on the Wednesday He finished on the Thursday He returned on the Friday to clean the sight. Travis is a star! I have recommended him to ALL my neighbors. The Deck looks amazing, its very solid and is better than I could have imagined. They provided me with the lowest quotation and the best service. THANK YOU!&quot;&nbsp;&nbsp;- Ronnie K.";
testimonials[3] = "<strong>Wood TH Deck, Germantown MD</strong><br/>&quot;Travis was great to work with. He started the job promptly and he was very professional. He did a great job on the deck and did a beautiful job. We are very happy with the results.&quot;&nbsp;&nbsp;- Sung Y.";
testimonials[4] = "<strong>Azek Deck with Wood Rails, Derwood MD</strong><br/>&quot;Deck turned out great! We were very satisfied with the work of the carpenters.&quot;&nbsp;&nbsp;- Martin F.";


function setTestimonial(){
	if(currTest >= testimonials.length)
		currTest = 0;
	setTestBlurb(currTest);
//	alert(currTest);
	currTest++;
}

function startTimer(){
	setInterval('setTestimonial()',5000);
}

function initialize(){
	setTestimonial();
	startTimer();
}

function setTestBlurb(){
	document.getElementById("testimonialBlurb").innerHTML = testimonials[currTest];	
}

window.onload = initialize;
*/
