<!-- Begin

function getquote()
{
	theDate= new Date();
	var ix = (theDate.getSeconds() % 7) + 1;
	var numquotes = 7;
	quotes = new Array(numquotes+1);
	quotes[1] = "Q. How do you measure company success?";
	quotes[2] = "Q. Does LEED equate efficiency?";
	quotes[3] = "Q. How do you ensure project quality?";
	quotes[4] = "Q. Do you implement safety training?";
	quotes[5] = "Q. What is a Design/Build project?";
	quotes[6] = "Q. What is a mixed-use building?";
	quotes[7] = "Q. How has technology impacted construction?";
	
	document.write(quotes[ix]);
}
function getauthor()
{
	theDate= new Date();
	var ix = (theDate.getSeconds() % 7) + 1;
	var numquotes = 49;
	authors = new Array(numquotes+1);
	authors[1] = "<a href='faqs.aspx#Anchor-success'>Click Here</a>";
	authors[2] = "<a href='faqs.aspx#Anchor-efficiency'>Click Here</a>";
	authors[3] = "<a href='faqs.aspx#Anchor-quality'>Click Here</a>";
	authors[4] = "<a href='faqs.aspx#Anchor-safety'>Click Here</a>";
	authors[5] = "<a href='faqs.aspx#Anchor-Design-Build'>Click Here</a>";
	authors[6] = "<a href='faqs.aspx#Anchor-mixed-use'>Click Here</a>";
	authors[7] = "<a href='faqs.aspx#Anchor-technology'>Click Here</a>";

	document.write(authors[ix]);
}
//  End
 -->