// RANDOM GREEN FEATURE IMAGES
function random_green_feature(){
	var images=new Array()
	images[1]='83cents.jpg';
	images[2]='effective.jpg';
	images[3]='thrift_stores.jpg';

	var alt=new Array()
	alt[1]='Eighty three cents of every dollar donated to The Salvation Army goes directly to support programs and services to help those most in need.';
	alt[2]='Management guru, Peter Drucker called The Salvation Army by far the most effective organization in the U.S., in a Forbes magazine article.';
	alt[3]='When you support The Salvation Armys Thrift Stores, you are helping thousands of men and women from every walk of life fight substance abuse and return to their communities as participating, contributing members.';

var foo=Math.floor(Math.random()*images.length)
	if (foo==0)
	foo=1;
	
	document.write('<img src="images/' + images[foo] + '" border="0" alt="' + alt[foo] + '" title="' + alt[foo] + '" align="left" />');
};

// RANDOM RED FEATURE IMAGES
function random_red_feature(){
	var images=new Array()
	images[1]='since_1891.jpg';
	images[2]='did_you_know.jpg';
	images[3]='nationally.jpg';

	var alt=new Array()
	alt[1]='The red Christmas kettle debuted in San Francisco in 1891 in the guise of a crab pot. A depression had thrown many out of work, including hundreds of seamen and longshoremen. The campaign proved so successful that by 1900 it was imitated nationwide.';
	alt[2]='The Salvation Army is an international organization that meets the physical and spiritual needs of people in 114 countries around the world and nearly 1,400 communities across America.';
	alt[3]='Nationwide, The Salvation Army assists more than 34 million individuals throughout the year, and more than five million during the holiday season alone.';

var foo=Math.floor(Math.random()*images.length)
	if (foo==0)
	foo=1;
	
	document.write('<img src="images/' + images[foo] + '" border="0" alt="' + alt[foo] + '" title="' + alt[foo] + '" align="left" />');
};

// RANDOM ORANGE FEATURE IMAGES
function random_orange_feature(){
	var images=new Array()
	images[1]='mill_people.jpg';
	images[2]='family.jpg';
	images[3]='holiday.jpg';

	var alt=new Array()
	alt[1]='The Salvation Army assists nearly half a million people with social service projects in Southern California each year.';
	alt[2]='The Salvation Army operates a Missing Persons Service, which provides service to more than 190,000 people annually.';
	alt[3]='During the holidays, The Salvation Army in Southern California distributes food and toy baskets to  270,000 families, serves nearly 2 million meals, ministers to more than 55,000 shut-ins in hospitals and care facilities, and provides more than 75,000 orders of groceries.';

var foo=Math.floor(Math.random()*images.length)
	if (foo==0)
	foo=1;
	
	document.write('<img src="images/' + images[foo] + '" border="0" alt="' + alt[foo] + '" title="' + alt[foo] + '" align="left" />');
};