var textcolours = Array( "#0000FF", "#209320", "#FF2020", "#FF8400", "#85459B", "#13007C" );
var textcounter = 0;
function flashmytext() {
	if ( document.getElementById( "llatoplink" ) )
	document.getElementById( "llatoplink" ).style.color = textcolours[ textcounter ];
	if ( document.getElementById( "laatitlelink" ) )
	document.getElementById( "laatitlelink" ).style.color = textcolours[ textcounter ];
	textcounter++;
	if (textcounter>textcolours.length) {textcounter=0;}
} 
setInterval( "flashmytext()", 1000 );

