var quotes_array_1 = [
new Array("I have been around this business for more years than I care to admit, and seldom have I run into a company as exceptional as yours.", "Jeff Howard, Sales Manager, Capitol Lumber Company"),
new Array("I am writing this letter to thank you very much for your cooperation to complete the latest rush job of the Andong Outdoor Performance Center. The client has expressed their satisfaction not only with the quality of the material but also with your good service.", "Soonho Gimm, WTC Co. Ltd. - South Korea"),
new Array("I want to thank you and all of your personnel for their wonderful service. We look forward to many years of continued relationship and many more satisfied customers.", "David G. Rogers. PE, VP, Continental Bridge Corporation")
];
var quotes_array_2 = [
new Array("We feel Timber Holdings is a very reputable company. Their heart is in the right place.", "Francine Stephens, Rainforest Alliance"),
new Array("This particular company has done everything it can to be doing the right thing from an environmental point of view.", "Dr. Patrick Moore, Founding member of &lsquo;Greenpeace&rsquo; and &lsquo;GreenSpirit&rsquo;"),
new Array("We also found that your company was the only supplier that appeared to be committed to environmental protection of our forests.", "David G. Rogers, .PE, VP, Continental Bridge Corporation")
];
//
function change_quotes() {
	//$(".quote_bubble").css("background", "#f60")
	//Change business quotes
	var random_number = Math.floor(Math.random()*quotes_array_1.length);
	$("#quote_1").children(".quote").html("&ldquo;"+(quotes_array_1[random_number][0])+"&rdquo;")
	$("#quote_1").children(".attribution").html("&ndash; "+(quotes_array_1[random_number][1]))
	//Change Environmental quotes
	var random_number = Math.floor(Math.random()*quotes_array_2.length);
	$("#quote_2").children(".quote").html("&ldquo;"+(quotes_array_2[random_number][0])+"&rdquo;")
	$("#quote_2").children(".attribution").html("&ndash; "+(quotes_array_2[random_number][1]))
}