
//Displays various sayings on ItsAmity.com

//multiplier - set to 100 sayings
var Sayingmult = 100;

//This number must be the same as the number of sayings
var Sayingmaxnum = 43;

//Edit or Add sayings below using the same format
var Saying = new Array(Sayingmaxnum);

Saying[	0	] = "	Have you checked the calendar recently?	";
Saying[	1	] = "	Have you seen any good News articles about our community?	";
Saying[	2	] = "	Does your church have a web site that should be listed in Resources-Churches?	";
Saying[	3	] = "	Do you have photos of Amity you can share?	";
Saying[	4	] = "	Have you checked out the ItsAmity Blog	";
Saying[	5	] = "	How can we all help Amity be better?	";
Saying[	6	] = "	Say yes to lower taxes!	";
Saying[	7	] = "	Advertise your business on ItsAmity.com	";
Saying[	8	] = "	Are there things to do that are not listed on ItsAmity.com?	";
Saying[	9	] = "	What Issues are you concerned about?	";
Saying[	10	] = "	Tell your friends about ItsAmity.com	";
Saying[	11	] = "	Check Movies for the State Theater in Boyertown	";
Saying[	12	] = "	Have you seen 'What's New' in Amity?	";
Saying[	13	] = "	Try some of the games; let us know if we should have a contest	";
Saying[	14	] = "	Know of any Kids Places we can add?	";
Saying[	15	] = "	Work Out for Free at Snap Fitness 24x7	";
Saying[	16	] = "	Home Sweet Home	";
Saying[	17	] = "	Let us know if your neighborhood has a website.	";
Saying[	18	] = "	Check the Housing page for new developments	";
Saying[	19	] = "	Increase your business, advertise on ItsAmity.com	";
Saying[	20	] = "	Is there a topic you would like to see in a web poll?	";
Saying[	21	] = "	Thank our sponsors by visiting their web sites.	";
Saying[	22	] = "	Do you check ItsAmity each day?	";
Saying[	23	] = "	Have you joined the ItsAmity Yahoo group	";
Saying[	24	] = "	Help us collect historical facts; submit them on the history page	";
Saying[	25	] = "	Are you a member of the ItsAmity_talk Yahoo group?	";
Saying[	26	] = "	Please submit your organization's calendar items for the community calendar.	";
Saying[	27	] = "	See new construction?  Submit it for What's New!	";
Saying[	28	] = "	Tell your friends about ItsAmity.com	";
Saying[	29	] = "	Set ItsAmity.com as your browser homepage or make it a favorite	";
Saying[	30	] = "	Work Out for Free at Snap Fitness 24x7	";
Saying[	31	] = "	Need a realtor, See the Business page	";
Saying[	32	] = "	Is your PC secure?  See our Favorite Links	";
Saying[	33	] = "	Seen a good church sign?  Submit it at churchsigns.homestead.com	";
Saying[	34	] = "	Remember September 11th, 2001	";
Saying[	35	] = "	Does your public club have a web site that should be listed?	";
Saying[	36	] = "	Donate your time or money at ItsAmity.com/Service.html	";
Saying[	37	] = "	List your home business on the business page!	";
Saying[	38	] = "	Announce your Yard Sale on ItsAmity.com	";
Saying[	39	] = "	List your Home for Sale on ItsAmity.com	";
Saying[	40	] = "	Let us know of any businesses we do not have listed on the business listing page	";
Saying[	41	] = "	Be a good community citizen, Volunteer	";
Saying[	42	] = "	Amity, the best place to live!	";
Saying[	43	] = "	Are you a member of the AmityPAtraders Yahoo group?	";



//This section selects the random Saying to display
var Sayingrand = Sayingmaxnum + 1;
while(Sayingrand > Sayingmaxnum)
{
	var Sayingnum = Math.random();
	var Sayingrand = Math.floor(Sayingnum * Sayingmult);
}

document.write("<IMG SRC=http://www.itsamity.com/files/saying.gif BORDER=0 ALT='Click for another tip!' onClick=history.go(0)> <FONT FACE='Arial' SIZE=-1><B>ItsAmity Tip!</B></FONT><BR>");
document.write(Saying[Sayingrand]);


