// JavaScript Document

	var ie = 5;     // Number of alternative images
    var a = new Array(ie);  // Array to hold filenames
	var b = new Array(ie);  // Array to hold filenames
	
      
a[0] = "&quot;What I most enjoy about working at Eben Design is the opportunity to learn about a number of different businesses, due to the diversity of clients that we work with.&quot;" ;
a[1] = "&quot;I really enjoy the environment at Eben Design. I’m surrounded by like-minded & creative people, a well-designed office, and beautiful Green Lake just a few blocks away. It feels good to be here.&quot;" ;
a[2] = "&quot;It feels good to come to work when there is such strong positive and collaborative energy flowing, and you just can't beat the location!&rsquo;&quot;" ;
a[3] = "&quot;I enjoy working at Eben Design because everyone here is extremely talented at their specialty and genuinely care about the work they perform.  I’m very inspired to do the same.&rsquo;&quot;" ;
a[4] = "&quot;It's great to work with people who respect each other's work and ideas, and to see clients light up when they realize someone really understands and can articulate their vision.&rsquo;&quot;" ;

b[0] = "- Gabe Brauer<br />Creative Services<br />";
b[1] = "- Jerome Humbert<br />Creative Services<br />";
b[2] = "- Molly Dowd<br />Client Services<br />";
b[3] = "- Mia Vo<br />Client Services<br />";
b[4] = "- Dan Walker<br />Creative Services<br />";


function pickRande(range) {
if (Math.random)
return Math.round(Math.random() * (range-1));
else {
var now = new Date();
return (now.getTime() / 1000) % range;
}
}
// Write out an IMG tag, using a randomly-chosen image name.
var choice = pickRande(ie);
// -->
    
