// JavaScript Document

function getQuote() { 

var quotes=new Array()

//change the quotes if desired. Add/ delete additional quotes as desired.

quotes[0]='"Design must seduce, shape, and perhaps more importantly, evoke an emotional response." <br/>- April Greiman'

quotes[1]='"WDesign is not just what it looks like and feels like. Design is how it works." <br/>- Steve Jobs'

quotes[2]='"Problems with visual design can turn users off so quickly that they never discover all the smart choices you made with navigation or interaction design." <br/>- Jesse James Garrett'

quotes[3]='"Every Web team has its own take on dividing up roles and responsibilities and implementing processes for design and development." <br/>- Jesse J. Garrett'

quotes[4]='"User-centered design means understanding what your users need, how they think, and how they behave - and incorporating that understanding into every aspect of your process." <br /> - Jesse J. Garrett'

quotes[5]='"Design comes from the Unknown." - <br /> rt'

quotes[6]='"The conclusion of design flows naturally from the data; we should not shrink from it; we should embrace it and build on it." <br/>- Michael Behe'

quotes[7]='"Scenarios are usually specified at too high a level to be of much value in the design of specific interface elements." <br/>- Donald Norman'

quotes[8]='"User-centered design means working with your users all throughout the project." <br/>- Donald Norman'

quotes[9]='"Also note that invariably when we design something that can be used by those with disabilities, we often make it better for everyone." <br/>- Donald Norman'

quotes[10]='"Accessible design is good design." <br/>- Steve Ballmer'

quotes[11]='"Almost all quality improvement comes via simplification of design, manufacturing... layout, processes, and procedures." <br/>- Tom Peters'

quotes[12]='"Design is so critical it should be on the agenda of every meeting in every single department." <br/>- Tom Peters'

quotes[13]='"Design is the method of putting form and content together. Design, just as art, has multiple definitions; there is no single definition. Design can be art. Design can be aesthetics. Design is so simple, thats why it is so complicated." <br/>- Paul Rand'

quotes[14]='"The Japanese have a wonderful sense of design and a refinement in their art. They try to produce beautiful paintings with the minimum number of strokes." <br />- David Rockefeller'

quotes[15]='"The usability testing had never revealed how hard it was to do it with your own real data as opposed to doing it in the usability lab under artificial circumstances." <br />- Scott Cook'

quotes[16]='"Beauty and brains, pleasure and usability — they should go hand in hand." <br />- Donald Norman'

quotes[17]='"[Users] make their credibility-based decisions about the people or organization behind the site based upon the sites overall visual appeal." <br />- Stanford Persuasive Technology Lab, 2002'

quotes[18]='"Design is so critical it should be on the agenda of every meeting in every single department." <br/>- Tom Peters, 2003'
quotes[19]='"Design is not just what it looks like and feels like. Design is how it works." <br />- Steve Jobs, 2003'

quotes[20]='"Design is a plan for arranging elements in such a way as best to accomplish a particular purpose" <br/>- Charles Eames'

quotes[21]='"To dismiss front-end design as mere -icings- is to jeopardize the success of any site." <br />- Curt Cloninger, 2001'

quotes[22]='"Good designers can create normalcy out of chaos; they can clearly communicate ideas through the organizing and manipulating of words and pictures." <br />- Jeffery Veen, 2000'

quotes[23]='"The ability to simplify means to eliminate the unnecessary so that the necessary may speak." <br />- Hans Hofmann'

quotes[24]='"Visual appearance is one of the most effective variables for quickly differentiating one application from another." <br />- Bob Baxley, 2003'

quotes[25]='"The location of visual elements in the UI has a huge impact on how the user interprets information." <br />- Rick Oppedisan, 2002'

quotes[26]='"Good design is the most important way to differentiate ourselves from our competitors." <br />- Samsung CEO Yun Jong Yong, 2004'

quotes[27]='"Innovation distinguishes between a leader and a follower."<br />- Steve Jobs, 2005'

quotes[28]='"You cant just ask customers what they want and then try to give that to them. By the time you get it built, they will want something new." <br/>- Steve Jobs, 2005'

quotes[29]='"I prefer design by experts - by people who know what they are doing" <br />- Don Norman, 2005'

quotes[30]='"When you take technology and mix it with art, you always come up with something innovative."- Robert Rodriguez, 2006'

var whichquote=Math.floor(Math.random()*(quotes.length));
document.getElementById('quotes').innerHTML = quotes[whichquote];

}