function fadeInText(counter) {
	//alert("whooa");
	var fading;
	var div = document.getElementById("content_text");
	if (div != null) {
		if (counter < 100) {
			counter++;
			y = "fadeInText(" + counter + ")";
			div.style.filter='Alpha(opacity=' + counter + ')';
			div.style.MozOpacity=counter/100;
			fading = window.setTimeout(y,10);
		}
		else {
			window.clearTimeout(fading);
			div.style.filter='Alpha(opacity=100)';
			div.style.MozOpacity=1;
		}
	}
}



