<!--

function random_content2(){
var mycontent2=new Array()
//specify random content below.
mycontent2[1]='Fast, accurate and so very, very good.'
mycontent2[2]='Brilliant work, Good turn around time. Very Professional yet approachable.'
mycontent2[3]='Fast, easy, painless. A real pleasure.'
mycontent2[4]='Creative, professional and very distinctive work!'
mycontent2[5]='I will hire them again and again for their diligence, professionalism, speed and quality work.'


var ry=Math.floor(Math.random()*mycontent2.length)
if (ry==0)
ry=1
document.write(mycontent2[ry])
}
random_content2()
//-->

