// JavaScript Document
//================================ PROFILE QUOTES-============================
var i=0;
var list=new Array()
list[0]='<br /><br />&ldquo;One of the big names in our marketing and advertising industry&rdquo;<br />&nbsp;Craig Canavan, Property Magazine';
list[1]='<br /><br />&ldquo;One of the country&acute;s foremost thinkers on brands&rdquo;<br />Siphiwe Mpye, Editor, Blink';
list[2]='<br /><br />&ldquo;South Africa&acute;s Mr. Brand&rdquo;<br />&nbsp;Mail &amp; Guardian';
list[3]='<br /><br />&ldquo;Delightfully unpretentious, understated glamour and<br />matching charm"<br />&nbsp;Fairlady';
list[4]='<br /><br />&ldquo;He&acute;s led the brand (NIKE)<br /> into pole position&rdquo;<br />&nbsp;Michelle Constant, GQ';
list[5]='<br /><br />&ldquo;Stylish, bright and witty&rdquo;<br />&nbsp;Marika Sboros, Star';
list[6]='<br /><br />&ldquo;One of South Africa&rsquo;s most reputable marketers&rdquo;<br />&nbsp;Top Billing';
list[7]='<br /><span style="font-size: 0.7em;">&ldquo;Thank you for arranging such brilliant guest speakers... I really thought that anyone following Geoff would struggle to meet the bar he set, but Thebe took it to the next level&rdquo;<br />&nbsp;Kade Krause, Kite Logistics</span>';
list[8]='<br /><span style="font-size: 0.6em; line-height: 22px;">&ldquo;Thanks for the opportunity to witness and listen to one of the most dynamic and inspiring guest lecturers I have ever heard. Thebe Ikalafeng - has truly left a mark in my life. His guidance and comments made me think clearly about my personal branding&rdquo;<br />&nbsp;Anusha Govindsamy, Regional Sales Manager Commercial Fuels, Masana Petroleum Solutions</span>';

function changeShortQuote() {
	i++;
	if (i>=list.length) {
		i=0;
	}
	if (document.getElementById('shortQuote')) {
		document.getElementById('shortQuote').innerHTML=list[i];
	} else {
		document.layers[shortQuote].document.open();
		document.layers[shortQuote].document.write(html);
		document.layers[shortQuote].document.close();
	}
	setTimeout('changeShortQuote()',5000);
}
window.onload=changeShortQuote;