//Display and hide the testimonal tab pop-up on the homepage	    var displayDiv = false;	    	    function displayHideDiv()	    {	        if (displayDiv)	        {	            document.getElementById('testimonials').style.display = 'none';	            displayDiv = false;	        }	        else	        {	            document.getElementById('testimonials').style.display = 'block';	            displayDiv = true;	        }	        	    }		//Randomly rotate the names and quotes in the homepage testimonial pop-up    var num;    var name_array;    var quote_array;        name_array = new Array();    name_array[0]="laura";    name_array[1]="jenny";    name_array[2]="erik";    name_array[3]="jean";    name_array[4]="kristine";    name_array[5]="jenni";        quote_array = new Array();    quote_array[0]="<p>I increasingly rely on Insight Designs with regard to all aspects of our site: layout and design, content, function, and programming. Their staff is an integral extension of the Spyder team. And I hope no one else hires them, so I can monopolize their time!<br />&mdash; <strong>Laura Wisner</strong>, Communications and Internet Marketing Manager, Spyder Active Sports, Inc.</p>";        quote_array[1]="<p>Insight has taken care of us since day one - helping define our technical requirements, wowing us with creative designs, meeting every production deadline... To this day they meet our most demanding requirements...<br />Insight Designs ROCKS.<br />&mdash; <strong>Jenny Slade</strong>, Communications Director, NCWIT.org</p>";        quote_array[2]="<p>Insight Designs exceeded our expectations. They used what scraps of ideas we gave them and built us a site that is not only uniquely &quot;us&quot; but also looks great and functions superbly. Their staff is talented, speedy, and most of all, they listen to what we have to say.<br />&mdash; <strong>Erik Srping</strong>, Landscape Architect, Design Concepts</p>";        quote_array[3]="<p>The quality of work is excellent. And the folks at Insight Designs are so easy to work with.<br />&mdash; <strong>Jean Giese</strong>,<br /> Director of Investor Relations, PepsiAmericas, Inc.</p>";        quote_array[4]="<p>Insight Designs has been an excellent partner for both Sierra Designs and Ultimate Direction. Both brand sites were started from scratch with Insight and have developed over the years. Insight has great ideas, they're fun to work with, and they're always very responsive to our quick turn and design needs.<br />&mdash; <strong>Kristine Carey</strong>, Marketing Manager, Sierra Designs and Ultimate Direction</p>";        quote_array[5]="<p>Insight Designs is a delight to work with - they are smart, design-savvy and always on top of things. They continue to regularly exceed my expectations!<br />&mdash; <strong>Jenni Hamilton</strong>,<br />Advertising and Creative Team, Steelcase Inc.</p>";    function getran()    {        var n;        n=Math.round(Math.random()*(name_array.length-1));        return n;    }        function getname(num)    {        n=name_array[num];        return n;    }        function getquote(num)    {        q=quote_array[num];        return q;    }
