// JavaScript Document
<!--

function showQuote(){

quote = new Array();
quote[0] = "<blockquote>\"I was able to have a look at how the company operated before I agreed to take a permanent role - <strong>it was brilliant!</strong>\"</blockquote><cite>Jody,<br />Chef De Partie</cite><p><a href='client-stories.php#jody'>Find out how we helped Jody &raquo;</a></p>";
quote[1] = "<blockquote>\I really enjoy my work with Three Q. No two days are ever the same \</blockquote><cite>Pavlina,<br />Ward Host</cite><p><a href='client-stories.php#pavlina'>Find out how we <br /> helped Pavlina &raquo;</a></p>";
quote[2] = "<blockquote>\Alfred is a temporary employee who joined Three Q Catering in 2004.</blockquote><cite>Alfred,<br />Temp</cite><p><a href='client-stories.php#alfred'>Find out how we helped Alfred &raquo;</a></p>";
quote[3] = "<blockquote>\Working for Three Q gives me the opportunity to work in different places and with new people.  Many have become friends!</blockquote><cite>Michael,<br />Chef</cite><p><a href='client-stories.php#michael'>Find out how we helped Michael &raquo;</a></p>";
quote[4] = "<blockquote>\I am now working in one of Dublin's best restaurants and although its very hard work I am enjoying every minute of it.</blockquote><cite>Jose,<br />Senior Sous Chef Applicant</cite><p><a href='client-stories.php#Jose'>Find out how we helped Jose &raquo;</a></p>";
quote[5] = "<blockquote>\I have always found the staff that you have sent me to be very punctual, mannerly and the most important professional in their duties. </blockquote><cite>Darragh,<br />Head Chef</cite><p><a href='client-stories.php#Darragh'>Find out how we helped Daragh &raquo;</a></p>";

divclass = new Array();

divclass[0] = "class='jody'"
divclass[1] = "class='pavlina'"
divclass[2] = "class='alfred'"
divclass[3] = "class='michael'"
divclass[4] = "class='jose'"
divclass[5] = "class='darragh'"

//returns array
var i = Math.round((quote.length-1)*Math.random())

document.write("<div id='home_quote' " + divclass[i] + ">");
document.write( "<div id='home_quote_holder'>" + quote[i] + "</div></div>");

}
//done

// -->