<!-- Paso 1: Copiar este código en la sección <HEAD> -->

<!-- Original:  Craig Lumley -->
<!-- Web Site:  http://www.ws4all.co.uk -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
ie4 = ((navigator.appVersion.indexOf("MSIE")>0) && (parseInt(navigator.appVersion) >= 4));
var count = 0, count2 = 0, add1 = 9, add2 = 310, timerID,count3=100,count4=100,add3=-30,add4=-9;
function show() 
{
	if (ie4) 
	{
		count += add1;
		count2 += add2;
		count3-=add3;
		count4-=add4;
		delay = 2;
		if(count2 > 100) 
		{
			count2 = 100;
			count4=0;
		}
		if(count > 100) 
		{
			count = 100;
			count3=0;
			add1 = -30;
			add2 = -9;
			add3=30;
			add4=9;
			delay = 2;
		}
		if(count < 0) 
		{
			count = 0;
			count3=100;
		}
		if(count2 < 0) 
		{
			count2 = 0;
			count4=100;
			add1 = 9;
			add2 = 30;
			add3=-9;
			add4=-30;
			delay = 2;
		}
		fader.style.filter = "Alpha(Opacity="+count2+",FinishOpacity="+count+",style=2)";
//		fader(1).style.filter = "Alpha(Opacity="+count4+",FinishOpacity="+count3+",style=2)";
		timerID = setTimeout("show()", delay);
	}
}
window.onload = show;
//  End -->
//<!-- Paso 2: Encerrar en in div cuyo ID sea "fader" el texto que se quiere animar -->
//<!-- 
//<div id="fader" style="width:480; Filter:Alpha(Opacity=0,FinishOpacity=0,style=2)">
//<h1>
//<font family="Arial, Helvetica" color="maroon" size="+4">
//Thanks for
//<p>
//visiting the
//<p>
//JavaScript Source!
//</font>
//</h1>
//</div>
//-->
