text_phrases = Array(
	'Flawless By Design',
	'Work With The Best',
	'Inspired Assistance',
	'Are You Ready For HB?',
	'Power In Experience'
);

flash_text = '<object id="flash-text"' +
			 ' type="application/x-shockwave-flash"' +
			 ' data="./images/text_snippets.swf"' +
			 ' width="800" height="100">\n' +
			 '<param name="movie" value="./images/text_snippets.swf" />\n' +
			 '<param name="quality" value="high" />\n' +
			 '<param name="wmode" value="transparent" />\n' +
			 '<param name="FlashVars" value="lineTotal=';
flash_text += text_phrases.length;
for( i=0; i < text_phrases.length; i++) {
	flash_text += ('&text' + (i+1) + '=' + text_phrases[i] );
}
flash_text += ('" />\n' +
			 '<param name="loop" value="true" />\n' +
		'</object>');

document.write(flash_text);
