// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults
Event.observe(window, 'load', function()
{
	
	
	
	if( $('text1') )
	{
		new Element.hide('text1'); new Effect.Appear('text1' , { duration:2, delay:3 });
	
	}
	
	if( $('text4') )
	{
		new Element.hide('text4'); new Effect.Appear('text4' , { duration:2, delay:4 });
	
	}
	
	if( $('text2') )
	{
		new Element.hide('text2'); new Effect.Appear('text2' , { duration:2, delay:5 });
	
	}
	
	if( $('text3') )
	{
		new Element.hide('text3'); new Effect.Appear('text3' , { duration:2, delay:6 });
	
	}
	
	if( $('text7') )
	{
		new Element.hide('text7'); new Effect.Appear('text7' , { duration:2, delay:7 });
	
	}
});
