// JavaScript Document

var textcolours = Array( '#FFC600', '#0067CC' );
            
            function flashtext() {
            
                var colour = Math.round( textcolours.length * Math.random() );
                document.getElementById( 'flashingtext' ).style.color = textcolours[ colour ];
            
            } 
            
            setInterval( 'flashtext()', 150 );