/**
 * @author daniel
 */

function registerEvents () {
				
				if($('notification'))
				new Effect.Fade( $('notification'), { delay: 2 } );
	
}


Event.observe(window, 'load', function() {
	
				$('sub').hide();
				
				registerEvents();
				
			});
			
