function rotateslogan() {

var rotate = new Array

('<div align="center"><marquee class="pageHeading"><font color="#999999" size="4" face="Verdana, Arial, Helvetica, sans-serif"><strong>Need a site re-designed for your school, club or nursery ? ...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Our sites start from as little as £85 ...&nbsp;&nbsp;&nbsp;  </strong></font> </marquee></div>',
'<div align="center"><marquee class="pageHeading"><font color="#0000CC" size="4" face="Verdana, Arial, Helvetica, sans-serif"><strong>Need an old website updated or integrated with your new corporate branding ? ...&nbsp;&nbsp;&nbsp;   Just need some text updated but dont have the time..&nbsp;&nbsp;&nbsp; </strong></font> </marquee></div>',
'<div align="center"><marquee class="pageHeading"><font color="#6699CC" size="4" face="Verdana, Arial, Helvetica, sans-serif"><strong>We can provide secure, password protected areas for staff or PTA to discuss important issues and leave messages for other members &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ... If you just need some text updated but dont have the time then let us do it for you. We can bill by the hour or by the page...&nbsp;&nbsp;&nbsp;  </strong></font> </marquee> </div>');		

        var r = Math.random();
        r *= rotate.length;
        r = parseInt(r);
        if (isNaN(r)) r = 0;
        r %= rotate.length;
        var result = rotate[r];
        document.write(result);
        }
		