
var sentence = new Array();
sentence[0] = "An excellent guide to engaging your kids in quality, educational, and fun activities. - <i>Congressman Martin Heinrich, Father of two boys</i>";
sentence[1] = "Ideas for father-child activities are one of the most sought-after pieces of advice.WonderDads meets this need, and meets it in the best way possible, with local and age and gender-specific information. - <i>Roland Warren, President, National Fatherhood Initiative</i>";
sentence[2] = "Wonderdads is Wonderful!!!! - <i>Keiffer Mitchell, Delegate for the Maryland General Assembly</i>";
sentence[3] = "WonderDads provides busy men simple solutions to cure the dreaded I&rsquo;m bored.  - <i>Uncle Jim Mayer, Award-winning children&rsquo;s musician</i>";
sentence[4] = "A remarkable job highlighting and finding many of the places where a dad can spend quality time with his child... - <i>Mayor Richard J. Berry</i>";
sentence[5] = "Finally, what us Dad's have been waiting for: WonderDads!!! Just in the nick of time. - <i>Ellis Marsalis III, Author and poet</i>";
var aa = 0;

function disp_sent(){
	$($("#quote").html("")).fadeOut("fast");
	$($("#quote").html(sentence[aa])).fadeIn("slow");
	aa += 1;
	if(sentence.length > aa){
		setTimeout("disp_sent();", 5000);
	}else{
		aa = 0;
		setTimeout("disp_sent();", 5000);
	}
}

/*$(document).ready(function(){
	disp_sent();
});*/
