var isIE = (navigator.userAgent.indexOf("MSIE") != -1) ? true : false;
var phraseTimer = 1;
function growText() {
	if(isIE) {document.getElementById('phraseText').style.filter = 'alpha(opacity='+10*phraseTimer+')';}
	else {document.getElementById('phraseText').style.opacity =  0.1*phraseTimer;}
	if(phraseTimer < 10) {
		phraseTimer++;
		setTimeout('growText()', 200);
	} else {
		if(document.getElementById('phraseAuthor')) {
			phraseTimer = 1;
			setTimeout('growAuthor()', 200);
		}	
	}
}
function growAuthor() {
	if(isIE) {document.getElementById('phraseAuthor').style.filter = 'alpha(opacity='+10*phraseTimer+')';}
	else {document.getElementById('phraseAuthor').style.opacity =  0.1*phraseTimer;}
	if(phraseTimer < 10) {
		phraseTimer++;
		setTimeout('growAuthor()', 200);
	}
}
window.onload = function() {setTimeout('growText()', 1000);};
