
function rotatekeyfacts(num)
{
var index = randomize( 0, num) + 1;
var ct = 0;
var kfacts = new Array();
 
kfacts[ct]="<h1>220</h1><p>modern distribution</p><p>facilities</p>";
ct=ct+1;
 
kfacts[ct]="<p>Established in</p><h1>1999</h1>";
ct=ct+1;
 
kfacts[ct]="<h1>Portfolio</h1><p>independently valued</p><p>at 2.6 billion euros</p>";
ct=ct+1;
 
kfacts[ct]="<h1>4.7 million</h1><p>square metres of</p><p>leasable space</p>";
ct=ct+1;
 
kfacts[ct]="<p>Pan-European platform</p><p>spans</p><h1>11 countries</h1>";
ct=ct+1;
 
kfacts[ct]="<h1>93.7%</h1><p>occupied</p>";
ct=ct+1;
 
kfacts[ct]="<p>One of </p><h1>Europe's</h1><p>largest owners of</p><p>distribution facilities</p>";
ct=ct+1;
 
kfacts[ct]="<h1>100%</h1><p>focused on industrial</p><p>real estate</p>";
ct=ct+1;
 
kfacts[ct]="<h1>5.4 years</h1><p>to lease expiry</p>";
ct=ct+1;
 
kfacts[ct]="<h1>Buildings</h1><p>are 8.7 years old on</p><p>average</p>";
ct=ct+1;
 
kfacts[ct]="<h1>Over 90%</h1><p>of global trade is</p><p>transported by sea</p>";
ct=ct+1;
 
kfacts[ct]="<h1>Committed</h1> <p>to being a socially</p><p>responsible business</p>";
ct=ct+1;
 
kfacts[ct]="<h1>Serving</h1><p>over 200 customers</p>";
ct=ct+1;


document.getElementById('keyfacts').innerHTML=kfacts[index-1];
}

