var SoundSrc=null;

function GetTitle(){
	var Title=new Array(5);
	Title[0]="Words of Love";
	Title[1]="Feel this Heart, <nobr>Feel this Life</nobr>";
	Title[2]="Company of the Heart";
	Title[3]="Peace Is A Feeling";
	Title[4]="You Are Beautiful";
	document.writeln('<h1 class="TopMargin">'+Title[RandomInt(4)]+'</h1>');
}

function GetQuote(){
	function DoQuote(QT){
		document.writeln('<p class="HomeQuotes">'+QT+'</p>');
	}
	function DoSound(SF){if(IsHTTP()&&self==top){SoundSrc="av/mp3s/"+SF}}

	var Quote=new Array(3);
	Quote[0]='Within you is the most amazing feeling you can possibly '+
		'imagine. All that you look for, that you have looked for all '+
		'your life, has always been right inside you. This is a gift that '+
		'you have, and I can show you a way to get in touch <nobr>with '+
		'it.</nobr>';
	Quote[1]='It&#146;s so incredible in one sense that we search for '+
		'peace. But what if I were to tell you that the peace is searching '+
		'for you? We search for tranquillity. And what if I were to tell you, '+
		'that very actively, tranquillity is searching <nobr>for you?</nobr>';
	Quote[2]='Someday I will have peace in this life; someday I will have '+
		'tranquillity in this life; <nobr>someday -</nobr> I will have '+
		'happiness in this life. That is the promise that we made to '+
		'ourselves, that one day; one <nobr>day -</nobr> I will have peace '+
		'in my life. This is not a <nobr>prayer -</nobr> this was '+
		'<nobr>a promise.</nobr>';

	var SndFile=new Array(3);
	SndFile[0]=null;
	SndFile[1]="SearchingForYou.mp3";
	SndFile[2]="Promise.mp3";

	switch (RandomInt(2)){
		case 0: DoQuote(Quote[0]);break;
		case 1: DoQuote(Quote[1]);DoSound(SndFile[1]);break;
		case 2: DoQuote(Quote[2]);DoSound(SndFile[2]);break;
	}
}

