
	var shown = '';
	var scroll = '';
	var defaultMovieOptions = {
			width : 512,
			height : 342,
			autostart : false,
			fullscreen : true,
			controlbar : "bottom",
			stretching : "fill"
	}
	
	fadeBlocks = function(){
		shown = $H({});
		var blocks = $$('#loadingOverlay div');
		var prevTime = 0;
		blocks.each(
			function(elem){
				var time = getRandom();
				if (time > prevTime) prevTime = time;
				setTimeout(
						function(){
							new Effect.Fade(elem, {duration:'3.0'});
						},
						time
				)
			}
		)
		setTimeout(
			function(){
				new Effect.BlindDown($('navigation'));
				setTimeout(function(){
					navigation.centerNav();
					new Effect.Appear($$('.innerContentContainer')[0]);
					setTimeout(function(){startScroller('id2357010_content', 'id2357010_handle', 'id2357010_track', 'id2357010_up' ,'id2357010_down');}, 500);	
				}, 200);
			},
			prevTime  + 2500
		)
		
	}
	
	getRandom = function(){
		return Math.floor(Math.random()* 2500 );
	}
	

	function startScroller(content, handle, track, buttonUp, buttonDown){
		if (content){
			try{
		    	scroll = new Control.Scroller(content, handle, track, {
		    		up: buttonUp,
		    		down: buttonDown,
		    		axis:'vertical',
		    		autoHide : false
		    	});
			}catch(e){
				if (window.console) console.log(e);
			}
		}
	}

