Event.add(window, 'load', function()
{
	var pos = 0;
	
	function moveScreens()
	{
		
		
		// 194 x 121
		I('monitor_2').morph({
			styles: {
				backgroundPositionX: ['px', -(pos * 194), -((pos + 1) * 194)]
			},
			effect: EE.outCubic
		});
		
		// 263 x 164
		I('monitor_1').morph({
			styles: {
				backgroundPositionX: ['px', -((pos + 1) * 263), -((pos + 2) * 263)]
			},
			effect: EE.outCubic
		});
		
		// 160 x 100
		I('monitor_3').morph({
			styles: {
				backgroundPositionX: ['px', -((pos + 2) * 160 + 64), -((pos + 3) * 160 + 64)]
			},
			effect: EE.outCubic
		});
		
		
		pos++;
		
		setTimeout(moveScreens, 3000);
	}
	
	moveScreens();
	
	
});

