// JavaScript Document// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "&quot;Convenient, non-sweaty, visible results and actually fun &ndash; we can&rsquo;t recommend this enough!&quot; <em>The London Paper</em>";
Quotation[1] = "&quot;(the trainers) treat every client on an individual basis &ndash; giving various levels of difficulty depending on ability&quot; <em>Rachel</em>";
Quotation[2] = "&quot;I am bored of gyms, Good Vibes is a very social place where you get fit as well &hellip; great music too&quot; <em>Neil</em>";
Quotation[3] = "&quot;This has shifted my post pregnancy weight in just a few sessions a week!&quot; <em>Sarah</em>";
Quotation[4] = "&quot;Changes (since training at Good Vibes) include muscle definition and better core strength&quot; <em>Julian</em>";
Quotation[5] = "&quot;I thought I was fit but this gives an added dimension to my existing exercise regime. Great music &amp; a fun space too&quot; <em>Jeff</em>";
Quotation[6] = "&quot;PowerPlining class, nothing will  make you smile more&quot; <em>Vogue</em>";
Quotation[7] = "&quot;Very effective, short sessions; I like the small size classes&quot; <em>Silvia</em>";
Quotation[8] = "&quot;I have lost weight, my cellulite is disappearing fast!&quot; <em>Christina</em>";
Quotation[9] = "&quot;I&rsquo;m fitting into clothes I&rsquo;ve not been able to wear in years and getting lots of lovely compliments&quot; <em>Rachel</em>";
Quotation[10] = "&quot;It&rsquo;s like having a personal trainer but it&rsquo;s a lot faster and cheaper!&quot; <em>Jenny</em>";
Quotation[11] = "&quot;The PowerPlining class is tough but over before you know it&quot; <em>Grazia</em>";
Quotation[12] = "&quot;the studios are friendly, the trainers are brilliant and positive&quot; <em>Maria</em>";
Quotation[13] = "&quot;my legs and arms have really shaped up in just 3 weeks&quot; <em>Becci</em>";


// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();