﻿var quoteArray = new Array();quoteArray[0] = "'quality work to an international standard &ndash; you&rsquo;re doing something worthwhile for the country.'";quoteArray[1] = "'There&rsquo;s the opportunity to go home and see your work in the news &ndash; a lot of what we do is topical and drives the agenda.'";quoteArray[2] = "'Contributing to policy &ndash; it&rsquo;s not just churning out data &ndash; there&rsquo;s a real challenge that people don&rsquo;t always appreciate until they&rsquo;re in contact with the work.'";quoteArray[3] = "'This is the ultimate place to use your training if you&rsquo;ve come from a statistical background &ndash; we put the theory into practice and there&rsquo;s a real team spirit at work.'";quoteArray[4] = "'The work is important to people and to society.'";quoteLength = quoteArray.length;currentQuote = Math.floor(Math.random()*quoteLength);function writeQuote(){	document.getElementById("quote").innerHTML = quoteArray[currentQuote];}function nextQuote(){	currentQuote++;	if(currentQuote>=quoteLength){		currentQuote=0;	}	writeQuote();}writeQuote();