/*
	Oblique Strategies
	(not Brian Eno's but my own)

	copyright 2005 Robin Parmar
	use at will but retain this note
	licensed under GPL
*/

function ObliqueStrategies() {	
	os = new Array( 
		"A shadow is cast upon the wall.",
		"A sketch is good enough for now.",
		"Add a catalyst.",
		"Adopt an arbitrary conformity.",
		"Ending is beginning.",
		"Ask google.",
		"Be imagistic.",
		"Be more self-reflexive.",
		"Betray your instincts.",
		"Beyond a level of complexity, spontaneous assembly occurs. [De Landa]",
		"Choose a colour you dislike.",
		"Close your eyes.",
		"Cook yourself a meal.",
		"Copy your last action.",
		"Delegate the most important process.",
		"Delete your favourite thing.",
		"Do what is easy.",
		"Do what is necessary.",
		"Drop a beat.",
		"Even out the tone.",
		"Find a good person to kick your ass.",
		"Find a new context.",
		"Find an unlikely collaborator.",
		"Follow that whim.",
		"Get some fresh air.",
		"Hug someone.",
		"Increase cohesion.",
		"Increase tension.",
		"It's not that important.",
		"Lie down and breath.",
		"Light some incense.",
		"Look to the borderlines.",
		"Make more concrete.",
		"Meet face-to-face.",
		"Minimalism / maximalism.",
		"More boring.",
		"Nothing is something.",
		"Obliterate the most recent.",
		"Picture your childhood home.",
		"Seek the original.",
		"Separate the parts.",
		"Slice into equal pieces.",
		"Slow down.",
		"Spark a fire.",
		"Spiral like a nautilus shell.",
		"Stand on one leg.",
		"Stop and drink tea.",
		"Take fragmentary notes.",
		"Take the tangent to the centre segments. [Alphaville]",
		"The snail carries its home.",
		"There are no rules.",
		"There are places we go when we travel.",
		"There is nothing to say.",
		"Turn it inside out.",
		"Turn it into a ritual.",
		"Twice as fast and half as long.",
		"We have come to the war zone.",
		"What are you doing next Saturday?",
		"What haven't you noticed?",
		"Where is the outside?",
		"Write a computer programme.",
		"Write a surprise letter."
	);

	item = os[getRandom(os.length) -1];
	document.write(item);
}
