// Random Image Generator

    var ic = 6;                // Number of alternative images
    var xoxo = new Array(ic);  // Array to hold filenames
        
xoxo[0] = "images/blanket01.gif";
xoxo[1] = "images/blanket02.gif";
xoxo[2] = "images/blanket03.gif";
xoxo[3] = "images/blanket04.gif";
xoxo[4] = "images/blanket05.gif";
xoxo[5] = "images/blanket06.gif";

function pickRandom(range) {
	if (Math.random)
	return Math.round(Math.random() * (range-1));
	else {
		var now = new Date();
		return (now.getTime() / 1000) % range;
	}
}

var choice = pickRandom(ic);

//Random Fact Generator

function random_text()
{};
var random_text = new random_text();
var number = 0;					// Set the number of text strings to zero to start

random_text[number++] = "91% of Fund scholarship recipients are &quot;non-traditional&quot; students - have dependents, are older than 24, working full-time-or a combination of these characteristics."
random_text[number++] = "1 in 5 tribal college students must travel more than 50 miles to attend classes."
random_text[number++] = "Between 1997 and 2002 enrollment of American Indian students at TCUs grew by 32%, compared to 16% enrollment growth in higher educational institutions overall."
random_text[number++] = "Census data shows 25.7% of all American Indians and Alaska Natives living below the poverty line. In contrast, the national poverty rate was only 12.4%."
random_text[number++] = "Tribal college students want to use their education to help others: 64% want to use their education to help their people."
random_text[number++] = "Tribal college students want to use their education to help others: 73% of graduates attend college to make a better life for their families."
random_text[number++] = "Most tribal colleges operate on Indian reservations-providing access to higher education for those seeking an educational experience where cultural knowledge is as valued as rigorous academic standards."
random_text[number++] = "Tribal colleges are fully accredited institutions with the same academic standards as all other colleges and universities."
random_text[number++] = "56% of tribal college graduates go on to a four-year institution, a far greater number than the transfer rate of community colleges in general."
random_text[number++] = "Tribal college faculty, on average, earn $20,000 less annually than their community college counterparts."
random_text[number++] = "Commitment to community and culture are often cited as reasons for remaining at TCUs despite the disparities in compensation."

var random_number = Math.floor(Math.random() * number);

