/*
		<tr>
			<td class="footer">
			<table cellpadding="0" cellspacing="0" border="0">
				<tr>
					<td>
					<div class="quoteword">"My Daughter is a breast cancer survivor and i got involved when she was diagnosed, but breast cancer touches all of us. This is a group that is so involved in research and finding the cure"</div>
					<div class="quotename">-Rita Worth</div>
					</td>
				</tr>
			</table>
			</td>
		</tr>
	</table>
*/	
	document.write('<tr>');
		document.write('<td class="footer">');
		document.write('<table cellpadding="0" cellspacing="0" border="0">');
			document.write('<tr>');
				document.write('<td>');
				document.write('<div id="quoteword" title="1">"My Daughter is a breast cancer survivor and i got involved when she was diagnosed, but breast cancer touches all of us. This is a group that is so involved in research and finding the cure"</div>');
				document.write('<div id="quotename">-Rita Worth</div>');
				document.write('</td>');
			document.write('</tr>');
		document.write('</table>');
		document.write('</td>');
	document.write('</tr>');
document.write('</table>');
var quotewords = new Array(
	"\"My daughter is a breast cancer survivor and I got involved when she was diagnosed, but breast cancer touches all of us.  This is a group that is so involved in research and finding a cure.\"",
	
	"\"Although I’m not a survivor, many people I know are.  As a woman, I feel that the eradication of breast cancer is important to all of us.  SLBCC educates and advocates so that we can find a cure.\"",
	
	"\"This is a wonderful organization, wonderful dynamic women working together to ensure better health and healthcare for our children and grandchildren.\"",
	
	"\"Although I’m not a survivor, I’m for research and finding cures for all kinds of cancer.  My feeling is, “If there’s a breakthrough somewhere, maybe it will help other areas.”", 
	
	"\"I feel it’s very necessary to reach to women everywhere through our email alerts, and that we contact legislators to help eradicate breast cancer.\"",
	
	"\"My hope is that future generations will not have to live with this disease.\""
);

var quotenames = new Array("Rita Worth","Madeleine Elkins","Gail Lang","Judy Zafft","Barbara Silver","Kim Goldenberg");
function getAndDisplayQuote(noquote){
	var quoteword = document.getElementById("quoteword");
	var quotename = document.getElementById("quotename");
	
	quoteword.innerHTML = quotewords[noquote];
	quotename.innerHTML = quotenames[noquote];
}
var randomNum = new Number(Math.floor(Math.random()*5));
getAndDisplayQuote(randomNum);
document.getElementById("quoteword").title = randomNum+1;

function initRotating(){
	var quoteword = document.getElementById("quoteword");
	var quotename = document.getElementById("quotename");
	var noquote = new Number(quoteword.title);
	fade("quoteword");
	fade("quotename");
	setTimeout("getAndDisplayQuote("+noquote+")",1200);
	setTimeout("fade(\"quoteword\")",1500);
	setTimeout("fade(\"quotename\")",1500);
	quoteword.title = noquote==5? 0 : noquote + 1;
}
setInterval("initRotating()",15000);
