var DelayedFadeIn = new Class
({
		//Init options
        Implements: [ Options, Events ],

        options: 
		{
			id: '.long',
			delay: 5000,
			id2: '.short',
			delay2: 3000
			
        },
        
		initialize: function( options )
		{
			//Get my optional parameters
			this.setOptions( options );
			
			//Declare global variables
			this.delay 	  	  = this.options.delay;
			this.delayshort	  = this.options.delay2;
			this.duration 	  = this.options.duration;
			
			//make all of class "id" invisible
			$$( [ this.options.id, this.options.id2 ] ).each(function(el) { el.set({ 'opacity':0 }) });
			//$$( this.options.id2 ).each(function(el) { el.set({ 'opacity':0 }) });
			
			//Prime time!	
			var long  = this.launch.delay( this.delay, this );
			var short = this.launch2.delay( this.delayshort, this );
        },


		launch: function()
		{	
			$$( this.options.id ).each(function(el) { el.fade('in') });			
		},
		
		
		launch2: function()
		{	
			$$( this.options.id2 ).each(function(el) { el.fade('in') });			
		}
		
});
