// <!--
var quotes=new Array();
//specify random images below. array set defined [top image path, alt text top, bottom image path, alt text 2]
//there must be at least one and up to 4 images.


quotes[0]=["To every kid who never had a date to no school dance, this is for you.", "Good Charlotte"];
quotes[1]=["Please no cursing. My mother might be here", "Mike Womer"];
quotes[2]=["Ain’t nothing wrong with going down, its staying down that’s the problem.", "Muhammad Ali"];
quotes[3]=["Vision is everything that sight is not.", "Solecraft"];
quotes[4]=["I've seen a million faces and I've rocked them all.", "Jon Bon Jovi"];
quotes[5]=["Great spirits have always encountered violent opposition from mediocre minds.", "Albert Einstein"];
quotes[6]=["Don't call it a comeback.  I've been here for years.", "LL Cool J"];
quotes[7]=["I won't put my hands up and surrender; there will be no white flag on my door.", "Dido"];
quotes[8]=["I ain't passed the bar but I know a lil' bit.", "Jay-Z"];
quotes[9]=["He who is good for excuses is seldom good for anything else.", "Asian proverb"];
quotes[10]=["Forever trust in who you are.", "Metallica"];
quotes[11]=["You only get one shot. Don't miss your chance to blow.", "Eminem"];
quotes[12]=["Welcome back my friends to the show that never ends.", "ELP"];
quotes[13]=["It's not what you got, it's the life you live.", "Tesla"];
quotes[14]=["I believe we can make it through the winds of change.", "Kid Rock"];
quotes[15]=["Thank the Lord for the people I have found.", "Elton John"];
quotes[16]=["Life's a journey, not a destination.", "Steven Tyler"];
quotes[17]=["Get back to what it is that drives you", "Buckcherry"];

function get_quotes_reverse(){
	var quote_string_reverse;
	quote_string_reverse += '<marquee bgcolor="#000000;" direction="left" height="30" loop="0" scrollamount="7" scrolldelay="75" width="100%"><div style="padding:2px 2px 2px 2px;">';
	for(var m = quotes.length; m > 0; m--){
		quote_string_reverse += '<span style="font:Arial, Helvetica, sans-serif; font-size:24px; color:#FFFFFF">';
		quote_string_reverse += '"' + quotes[m - 1][0] + '"';
		quote_string_reverse += '</span>';
		
		quote_string_reverse += '<span style="font:Arial, Helvetica, sans-serif; font-size:24px; color:#C8D730;">';
		quote_string_reverse += '&nbsp;-&nbsp;' + quotes[m - 1][1] + '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';
		quote_string_reverse += '</span>';
		
		
	}
	quote_string_reverse += '</div></marquee>';
	return quote_string_reverse;
}


function random_quotes(){
	var number_of_quotes = quotes.length;
	var now = new Date();
	var ry = now.getSeconds() % (number_of_quotes - 3);
	document.write('<div class="quote">"' + quotes[ry][0] + '"</div><div class="quote_author">- ' + quotes[ry][1] + '</div><div class="quote">"' + quotes[ry + 1][0] + '"</div><div class="quote_author">- ' + quotes[ry + 1][1] + '</div><div class="quote">"' + quotes[ry + 2][0] + '"</div><div class="quote_author">- ' + quotes[ry + 2][1] + '</div><div class="quote">"' + quotes[ry + 3][0] + '"</div><div class="quote_author">- ' + quotes[ry + 3][1] + '</div>');
}

function init()
{
  var banner=get_quotes_reverse();
  if (document.all){
    document.getElementById("scroller").innerHTML = banner;
  }
}


// -->