function rand1(n)
{
	return(Math.floor(Math.random() * n + 1));
}
function showmsg()
{
	var random_msg1 = new Array();
	random_msg1[1] = "<table cellpadding='0' cellspacing='0' border='0' valign='top' class=\"color3\"><tr><td class=\"quote-hd txt-right color4\">...on Quality</td><tr><td>\"They supply the higher end of the grade.\" </td></tr></table>";

	random_msg1[2] = "<table cellpadding='0' cellspacing='0' border='0' valign='top' class=\"color3\"><tr><td class=\"quote-hd txt-right color4\">...on Quality</td><tr><td>\"They're truthful about grades and usually supply a half-grade better than average.\" </td></tr></table>";

	random_msg1[3] = "<table cellpadding='0' cellspacing='0' border='0' valign='top' class=\"color3\"><tr><td class=\"quote-hd txt-right color4\">...on Quality</td><tr><td>\"Consistent quality. With others, it's like a deck of cards, you never know what you're going to get.\" </td></tr></table>";

	random_msg1[4] = "<table cellpadding='0' cellspacing='0' border='0' valign='top' class=\"color3\"><tr><td class=\"quote-hd txt-right color4\">...on Quality</td><tr><td>\"They've always gotten excellent boards.\" </td></tr></table>";

	/*random_msg1[5] = "<table cellpadding='0' cellspacing='0' border='0' valign='top' class=\"color3\"><tr><td class=\"quote-hd txt-right color4\">...on Quality</td><tr><td>\"American's Customers on Dependability.\" </td></tr></table>";*/

	random_msg1[5] = "<table cellpadding='0' cellspacing='0' border='0' valign='top' class=\"color3\"><tr><td class=\"quote-hd txt-right color4\">...on Dependability</td><tr><td>\"They are dependable on every level. Their product knowledge is first rate and they have great inventory which means I'm dependable in turn.\" </td></tr></table>";

	random_msg1[6] = "<table cellpadding='0' cellspacing='0' border='0' valign='top' class=\"color3\"><tr><td class=\"quote-hd txt-right color4\">...on Dependability</td><tr><td>\"Good dependable service. You can see that they are on your side.\" </td></tr></table>";

	random_msg1[7] = "<table cellpadding='0' cellspacing='0' border='0' valign='top' class=\"color3\"><tr><td class=\"quote-hd txt-right color4\">...on Dependability</td><tr><td>\"They are a reliable, trustworthy company. And they have integrity, which in this industry speaks volumes.\" </td></tr></table>";

	random_msg1[8] = "<table cellpadding='0' cellspacing='0' border='0' valign='top' class=\"color3\"><tr><td class=\"quote-hd txt-right color4\">...on Dependability</td><tr><td>\"They have a great track record. Everyone promises the same thing, but at American you get what they promise.\" </td></tr></table>";

	
	var x = rand1(random_msg1.length-1);
	var h = document.getElementById("dycont");
	var quotetxt  = random_msg1[x];
	h.innerHTML = quotetxt;
}