/*#########################################//
			Random Quote Generator
	Copyright XiiteMedia @ www.xiite.co.uk
//#########################################*/


			function quote(insertTo){
				var console = document.getElementById(insertTo)
				var arrayCount;
				var random;
				var quote;
				var q = new Array()
					q[0]="The more desperate the situation the more optimistic the progress report."
					q[1]="A user is somebody who rejects the system because it's what he requested."
					q[2]="The difference between success and failure in a project is good PR."
					q[3]="Nothing is theyimpossible for the person who doesn't have to deliver it."
					q[4]="Each failing, overly ambitious project, has at its heart a series of successful small ones trying to escape."
					q[5]="A freeze on change melts whenever heat is applied."
					q[6]="You understood what I said, not what I meant."
					q[7]="If you don't know where you're going, just talk about specifics."
					q[8]="If at first you don't succeed, rename the project."
					q[9]="Everyone wants a strong project manager - until they get him or her."
					q[10]="Only idiots own up to what  really know."
					q[11]="The worst project managers sleep at night."
					q[12]="A failing project has benefits which are always spoken about in the future tense."
					q[13]="Projects don't fail in the end; they fail when they're conceived."
					q[14]="Visions are usually treatable."
					q[15]="Overly ambitious projects can never fail if they have a beginning, middle and no end."
					q[16]="In government an error isn't punished - only its disclosure."
					q[17]="The most difficult way is, in the long run, the easiest."
					q[18]="A realist is one who knows they'll be disappointed in the future."
				arrayCount = q.length;
				random = Math.floor(Math.random()*arrayCount)
				quote = q[random]
				console.innerHTML=''+quote;
				return quote;
			}