<!--
//quote array
	quoteList = new Array();
	
	quoteList[0] = "“If you live each day as if it was your last, someday you'll most certainly be right.” — Steve Jobs";
	quoteList[1] = "“Design is not just what it looks like and feels like. Design is how it works.” — Steve Jobs";
	quoteList[2] = "“Good artists copy. Great artists steal.” — Pablo Picasso";
	quoteList[3] = "“I have no philosophy, my favourite thing is sitting in the studio.” — Arne Jacobsen";
	quoteList[4] = "“People buy a chair, and they don't really care who designed it.” — Arne Jacobsen";
	quoteList[5] = "“As thin as possible, and never in the middle.” — Arne Jacobsen";
	quoteList[6] = "“Form follows function.” — Louis Sullivan";
	quoteList[7] = "“It's you who define which 'I' you think of when you say 'I'.” — Ram Dass";
	quoteList[8] = "“Trust no one.” — Deep Throat";
	quoteList[9] = "“Surprised to see me, Mr Anderson?” — Agent Smith";
	quoteList[10] = "“Showtime.” — Mr. Incredible";
	quoteList[11] = "“Watching me work is like watching a refrigerator make ice.” — Matthew Carter";
	quoteList[12] = "“Writing is not a series of strokes, but space, divided into characteristic shapes by strokes.” — Gerrit Noordzij";
	quoteList[13] = "“You think that's air you're breathing now?” — Morpheus";	
	quoteList[14] = "“A picture is worth a thousand words. An interface is worth a thousand pictures.” — Ben Shneiderman";	
	quoteList[15] = "“Design is a plan for arranging elements in such a way as best to accomplish a particular purpose.” — Charles Eames";
	quoteList[16] = "“The details are not the details. They make the design.” — Charles Eames";	
	quoteList[17] = "“Who ever said that pleasure wasn't functional? ” — Charles Eames";	
	quoteList[18] = "“Users do not care about what is inside the box, as long as the box does what they need done.” — Jef Raskin";	
	quoteList[19] = "“Water which is too pure has no fish.” — Ts'ai Ken T'an";
	quoteList[20] = "“My body - so thin - so tired - beaten for years - ploughshare - to bomb - so hard - bone - bomb.” — Brian Eno";	
			
	//randomization
	var now = new Date();
	var secs = now.getSeconds();
	var raw_random_number = Math.random(secs);
	var random_number = Math.round(raw_random_number * (quoteList.length));

	if (random_number == quoteList.length){random_number = 0}
	
	
	//set quote
	var quote = quoteList[random_number];

//-->