// quoteText, quoteName, quoteTitle, quoteCompany
quoteArray = new Array
(
'"The future of Britain\'s self esteem is safe in Nigel\'s hands. He has an awesome presence which touches and transforms people\'s lives!"^Jack Canfield^Co-Author^New York Time #1 Best Selling Chicken Soup for the Soul series',
'"How delighted I was with the response to your session! They were the highest marks we have achieved with a speaker in five years and that is a great tribute to the way in which you approached and adapted your session."^Brian Chernett^MD^The Academy of Chief Executives',
'"The feedback that I have had has been awesome, your combination of humour passion and energy was an inspiration for the whole team and was the perfect climax to our managers conference."^Nigel Rothband^MD^Body Shop Retail',
'"Nigel is an inspirational speaker and writer ... what you need to find out is what he has to offer- then take advantage of it."^Findlay Caldwell^MD of RAC^',
'"Nigel is the best speaker I know, I love listening to him, he is entertaining, thought provoking and always leaves you with a life changing thought. Every time I have here him speak he has new and fantastic content, I would like to recommend Nigel, you will love him.^Penny Power^Founder Of Ecademy^',
'"It gave me great pleasure last night to announce that you won \'Speaker of the Year\' ... Deservedly won, congratulations."^Robert Drew^Chief Executive^TEC International (UK) Ltd',
'"Just a line to say how much I value your emails ... As I read your emails each week the basics come flooding back and it is always good to have the re-enforcement. It does help to get you back on track."^Rona Cant^Motivational Speaker / Adventurer / Author^',
'"Keep it up my man! You ought to be cloned because the world could do with a few more guys like you!"^David Gray^South Gloucestershire Council^',
'"The information that you shared with us that day blew me away."^Jax^Essential Nails^',
'"Nigel, yesterday\'s session was brilliant and everyone has been talking about it since. You were a total inspiration. The style and content of your presentation was superb and had us all mesmerised for the full 5 hour session!"^Sam Dutton^MGM International^',
'"I have never seen a group so moved and motivated to change ... you literally blew them away with your style and delivery. Your aim was to make just a 1% DIFFERENCE in people\'s lives, I think some had a 100% shift!"^Stephen Head^Training Manager^Bayer Pharmaceuticals',
'"Your lively and professional style made the event a great success and you are the 1st speaker we have had to score a perfect 10 from all who have attended."^Dr. Jill Thurgood^Health Promotion Officer^GSK',
'"You\'ve had a profound effect on all of us. As a team we are much more motivated, focused and strong. We enjoy our work more than ever - and the business has started to really take off!"^Amanda Bone^Business Manager^Northern Bayer PLC',
'Just listened to your tape "Just be where you need to be" that you did for IBS and was enthralled ..... inspired ..... and totally motivated ..... sorry, couldn\'t think of another word beginning with I."^Ajay^^',
'"Thank you Nigel - networking really does work, you never know who you\'re going to meet, but you do need to make it happen!"^Lesley Everett^Personal Branding Consultant^LE Consultants Ltd.',
'"Many thanks Nigel for your superb "irritation" presentation on Friday -- it was brilliant and just what we wanted for the afternoon, it really gave a lot of our colleagues food for thought and for action."^Mick Bromford^Housing Group^',
'"Thank you for your words every week, they are very much appreciated and I will tell you more often from now on!"^Tracey Gregor^Supported Employment Advisor Include Project^Careers Scotland',
'"Thanks for such a great performance. I was dancing on my chair at the back of the room and have never seen Roche so motivated"^Emily Vaughan^Conference Creations Ltd.^',
'"Thanks once again for your hard work and effort last night ... your time and energy ... helped to make the event an outstanding success."^Kerel Austwick^Access to Finance Marketing Manager^',
'"I\'ve seen your delivery twice. The first time I thought \'Christ! - I\'m glad I\'m at hiding at the back\'. The second time, when I had more idea of what to expect I thought \'Bugger! it\'s rammed. I\'m going to be stuck right at the back\'. Third time lucky maybe."^Jeff Della^Mura',
'"Fantastic scores of 100% from the Chairman and 98% from Members, giving an overall average of 99%!^Karen Dawkins^Speaker Programme Management^TEC International (UK) Ltd',
'"\'Awesome\' - best speaker for past 12 months!"^TEC International^^',
'"Nigel was very informative. His presentation was fun, engaging but very powerful"^TEC International^^',
'"Excellent presentation with serious issues and how to deal with them, with a twist of fun"^TEC International^^',
'"Excellent"^TEC International^^'
)



function doQuote()
{
if(document.getElementById('randomQuote'))
	{
	thisString = "";
	stp = Math.floor(Math.random()*quoteArray.length);
	mtp = quoteArray[stp].split('^');

	quoteText = mtp[0];
	quoteName = mtp[1];
	quoteTitle = mtp[2];
	quoteCompany = mtp[3];

	thisString += quoteText;
	thisString += '<br>&nbsp;<br>';
	thisString += '<span class="quote-name">' + quoteName + '</span><br>';
	thisString += '<span class="quote-job">' + quoteTitle + '<br>';
	thisString += quoteCompany + '</span>';

	document.getElementById('randomQuote').innerHTML = thisString;
	}

doSecondLvl();
}


// shows 2nd lvl nav
function doSecondLvl()
{
thisU = document.URL;

thisS = thisU.split('=');
thisL = thisS.length;
thisL = thisL - 1;
myL = thisS[thisL];

if(myL=="9"||myL=="17"||myL=="18"||myL=="19"||myL=="20")
{
document.getElementById('services').style.display = "block";
}

if(myL=="21"||myL=="22"||myL=="23"||myL=="24"||myL=="25"||myL=="26"||myL=="27")
{
document.getElementById('members').style.display = "block";
}


thisUU = document.URL;

thisSS = thisUU.split('.');
thisLL = thisSS.length;
thisLL = thisLL - 2;
myLL = thisSS[thisLL];
finLL = "";

len = myLL.length;
st = len - 4;

for(x=st;x<myLL.length;x++)
{
finLL += myLL.charAt(x);
}

if(finLL=="home"||finLL=="cart"||finLL=="duct")
{
document.getElementById('products').style.display = "block";
}
}

