function namegen(){
var count = 20;
var date = new Date()
var sec = date.getSeconds()
var v = sec % count;
var txt
v +=1;
if (v==1) 
{
	txt="madMassey.com - All your base are belong to us.";
}
if (v==2) 
{
	txt="madMassey.com - Feed your inner degenerate.";
}
if (v==3) 
{
	txt="madMassey.com - No shoes, no pants, no problem!";
}
if (v==4) 
{
	txt="madMassey.com - Brevity is . . . wit.";
}
if (v==5) 
{
	txt="madMassey.com - I can't believe it's not butter!";
}
if (v==6) 
{
	txt="madMassey.com - Would you like fries with that?";
}
if (v==7) 
{
	txt="madMassey.com - Outlawed in 37 states and Cuba.";
}
if (v==8) 
{
	txt="madMassey.com - Up Up Down Down Left Right Left Right B A Start";
}
if (v==9) 
{
	txt="madMassey.com - I started out with nothing and still have most of it left.";
}
if (v==10) 
{
	txt="madMassey.com - Prepare to be assimilated.";
}
if (v==11) 
{
	txt="madMassey.com - Meandering to a different beat.";
}
if (v==12) 
{
	txt="madMassey.com - Insane in the membrane.";
}
if (v==13) 
{
	txt="madMassey.com - Dividing by zero since 2005.";
}
if (v==14) 
{
	txt="madMassey.com - roflcopter";
}
if (v==15) 
{
	txt="madMassey.com - Everybody gets one.";
}
if (v==16) 
{
	txt="madMassey.com - You spoony bard!";
}
if (v==17) 
{
	txt="madMassey.com - Take me to your leader.";
}
if (v==18) 
{
	txt="madMassey.com - It's safer here.";
}
if (v==19) 
{
	txt="madMassey.com - meh";
}
if (v==20) 
{
	txt="madMassey.com - I am an F... B... I... AGENT!";
}

document.write('<font face=Arial size=2 color="#CCCCCC"');
document.write('<b>' + txt + '</b>');
document.write('</font>');
}