//create an array of words to fade. The format is the following: word1, word1_color, word2, word2_color, etc...
//each word and color needs to be included in single quotes. The color can be a name or a hex code (#RRGGBB), for example red is #ff0000
fade_ar = ['S I E M E N S', '#000000', 'Mori-Seiki', '#ff0000'];

var FADE_SPEED = 300;			//The speed, in milliseconds, between each fade step
var FADE_STEP = 5;				//The amount of opacity to increase and decrease each step
var FADE_PAUSE = 4000; 		//The time, in milliseconds, that the text waits before starting to fade out