// JavaScript Document
function writeJS() {
var str='';
var no=Math.random()*6
str+='<div id="top-content-left';
str+=Math.round(no);
str+='">';
str+='<h1>About NDA<\/h1>';
str+='<p>The Northamptonshire Dyslexia Association (NDA) is a local Dyslexia Association based in Northampton.<\/p>';
str+='<p>&nbsp\;<\/p>';
str+='<p>Our aim is to support the needs of dyslexic people in Northamptonshire.<\/p>';
str+='<p>&nbs\p;<\/p>';
str+='<p><a href="about.htm">Find out more about us...<\/a><\/p> ';
str+='<\/div>';
document.write(str);
}
writeJS();