<!--
	var numQuotes = 17;
	var randomNumber = Math.round(Math.random()*(numQuotes-1)); 
	var quoteArray = new Array(numQuotes);
	quoteArray[0] = "I was drawn to be Snow White, but I drifted ";
	quoteArray[1] = "To draw is human – but it feels divine ";
	quoteArray[2] = "Just because I was drawn with no past does not mean I do not like men with a future";
	quoteArray[3] = "I was drawn to be loved, not understood";
	quoteArray[4] = "I might be slow on the uptake but I am quick on the draw ";
	quoteArray[5] = "The draw never interested me – only the win";
	quoteArray[6] = "My lines are drawn - but a good line is hard to resist";
	quoteArray[7] = "When I was drawn I followed the line of least resistance";
	quoteArray[8] = "The curve is more powerful than the sword";
	quoteArray[9] = "It’s the way I’m drawn that makes me the life of the party";
	quoteArray[10] = "I never worry about diets – carats are my only interest";
	quoteArray[11] = "To draw me is to love me";
	quoteArray[12] = "I gave my man a free hand and he drew all over me.";
	quoteArray[13] = "My man tried to avoid drawing in temptation – but then just couldn’t resist it";
	quoteArray[14] = "My man knows his place – and he has drawn me in all the right places!";
	quoteArray[15] = "It is better to be drawn than overdrawn";
	quoteArray[16] = "I am not naughty – I’m just drawn that way";
	
	function listRoxysQuotes() {
		var htmlTag1a = "<p class="+'block'+">";
		var htmlTag1b = "</p>";
		var htmlTag2a = "<span class="+'h1'+">";
		var htmlTag2b = "</span>";
		var htmlTag3a = "<span class="+'bodyText'+">";
		var htmlTag4a = "<span class="+'h0red'+">";
		var htmlQuotes = htmlTag4a + '"' + htmlTag2b;
		var dataString = "";
		
		var x=0; 
			for (x=0; x<numQuotes; x++) 
			{ 
			dataString = dataString + htmlTag1a + htmlTag2a + 'Quote: ' + (x+1) + '<br>' + htmlTag2b + htmlQuotes + htmlTag3a + quoteArray[x] + htmlTag2b +htmlQuotes + '<br><BR>' + htmlTag1b;
			} 

		document.write(dataString);
	}
	
//-->

