// JavaScript Document
// Store some random quotations

var random_quotes = new Array ( );
random_quotes[0] = "&#8220;If you asked me to design the perfect conference for the future of voice, I would put the smartest, most forward thinking engineering minds in a room and tell them to work out how to voice enable the internet. That is ETel. While other conferences obsess over recreating the existing phone world, eTel focuses on what's next for voice. If you want to join in the discussion of the next big steps for voice, attend ETel.&#8221;<br />&#8212; Jeff Bonforte, Yahoo! Real Time Communications";
random_quotes[1] = "&#8220;ETel 06 was one of the most important Telco-related events I attended in 2006. It brought together a wide range of innovators with a common goal of debating and shaping the future of telephony - a veritable buzzing hotbed of disruptive thinking and change.&#8221;<br />&#8212; Norman Lewis, Orange UK";
random_quotes[2] = "&#8220;O'Reilly's ETel has established itself as one of the best places to see and experience the future of phone, the future of wi-fi and the future of the Internet all come together. What is emerging is a totally new fabric of connectivity, and the people weaving it are the people talking on the stage and in the hallways at ETel.&#8221;<br />&#8212; Sheldon Renan";
random_quotes[3] = "&#8220;ETel was perhaps the most stimulating and refreshing conference I attended in 2006, completely living up to its namesake of &#8220;emerging&#8221; technology, as opposed to other VoIP related conferences, that, while important to the industry, tend to focus on &#8220;already emerged&#8221; technologies.&#8221;<br />&#8212; David Beckemeyer, Founder of Earthlink";
random_quotes[4] = "&#8220;ETel gave me a glimpse into the future of communications and the incredible opportunities that lay before us.  It's a vibrant collection of technologists and thinkers who have wiped the slate clean and are rethinking the way we interact with one another.  If you are interested in this future, I recommend you join the dialogue by attending ETel.&#8221;<br />&#8212; Scott Raney, Redpoint Ventures";

// Pick a random quote from the list,
// and set the 'random-quote' paragraph content to that quote

function rand ( n )
{
  return ( Math.floor ( Math.random ( ) * n + 1 ) );
}

function pick_quote ( )
{
  document.getElementById("quote").innerHTML = random_quotes[rand(5)-1];
}
