// JavaScript Document
var quotes=[
'<blockquote><p>We find Pangaea staff and management to be very responsive to us and, whatever the challenge, there is never a delay in providing a solution.</p><span class="title">Executive Secretary.</span></blockquote>',
'<blockquote><p>Aptify has freed up time and effort, organising things is much quicker and we are now in a position to take on more events without any increase in staff.</p><span class="title">Events project manager</span></blockquote>',				
'<blockquote><p>One of Aptify&reg; great strengths is the adaptability of the software.  We were able to easily incorporate data into the system that was specially required for museum, library, and archive.</p><span class="title">Team Administrator</span></blockquote>',
'<blockquote><p>In my experience, the software services provided by Pangaea have been consistently delivered on time and within budget.</p><span class="title">Business Analyst Manager</span></blockquote>',
'<blockquote><p>Pangaea listened to our organisational needs and adapted Aptify&reg; to enable us to track grants in and out of our organisation.</p><span class="title">Team Administrator</span></blockquote>',		
'<blockquote><p>We can express ourselves openly in the interests of the project\'s success and thus we maintain the pace of any emerging development.</p><span class="title">Executive Secretary.</span></blockquote>',
'<blockquote><p>The team at Pangaea have provided us with the highest level of customer service.  Listening to our needs at the beginning and adapting the software to meet our organisation needs.</p><span class="title">Team Administrator</span></blockquote>',
'<blockquote><p>Pangaea fit software to genuine commercial needs and not, as with the case of too many software vendors, fit commercial needs to the software.</p><span class="title">Finance Director</span></blockquote>',
'<blockquote><p>Pangaea has always adopted a &quot;customer first&quot; approach.</p><span class="title">Finance Director</span></blockquote>',
'<blockquote><p>I have found Pangaea a good company to work with, they provide clear communication of the status of activities and requests for information. Support calls have always been given a prompt response by the helpful staff.</p><span class="title">Senior Project Manager</span></blockquote>',
'<blockquote><p>With the installation of Apitfy&reg; the management of our training and events programme has been transformed.</p><span class="title">Team Administrator</span></blockquote>', 
'<blockquote><p>I am pleased to confirm that our new system from Pangaea Consulting was delivered on time and on budget and presents opportunities for us to streamline our administration and provide a more responsive service, whilst ensuring accurate record keeping: it does exactly what it says on the tin!</p><span class="title">Director General</span></blockquote>'];

   var timer=10000; 

/*********************************************************************************************************************/

   var temp;

	function showQuote() {
   num=Math.floor(Math.random()*quotes.length);
if(num==temp){
   showQuote();
 }
else {
   document.getElementById('quotes').innerHTML=quotes[num];
   temp=num;
   setTimeout(function(){showQuote()},timer);
  }
 }
if(window.addEventListener){
   window.addEventListener('load',showQuote,false);
 }
else { 
if(window.attachEvent){
   window.attachEvent('onload',showQuote);
  }
 }

	function breadCrumbs(base,delStr,defp,cStyle,tStyle,dStyle,nl) 
	{
		loc=window.location.toString();subs=loc.substr(loc.indexOf(base)+base.length+1).split("/");
		document.write('<a href="'+getLoc(subs.length-1)+defp+'" class="'+cStyle+'">Home</a>  '+'<span class="'+dStyle+'">'+delStr+'</span> ');
		a=(loc.indexOf(defp)==-1)?1:2;
			for (i=0;i<(subs.length-a);i++) 
			{ 
				subs[i]=makeCaps(unescape(subs[i]));
				document.write('<a href="'+getLoc(subs.length-i-2)+defp+'" class="'+cStyle+'">'+subs[i]+'</a>  '+'<span class="'+dStyle+'">'+delStr+'</span> ');
			}
		if (nl==1) 
			document.write("<br>");
			document.write('<span class="'+tStyle+'">'+document.title+'</span>');
	}
			
	function makeCaps(a) 
	{
		g=a.split(' ');
		for (l=0;l<g.length;l++) g[l]=g[l].toUpperCase().slice(0,1)+g[l].slice(1);
		return g.join(" ");
	}
		
	function getLoc(c) 
	{
		var d="";if (c>0) for (k=0;k<c;k++) d=d+""; return d;
	}
	
document.getElementById('lblDate').innerHTML = new Date().getFullYear();

