Event.add(window, 'load', function()
{
	var pos = 0;
	
	function moveScreens()
	{
		
		
		// 103 x 64
		I('monitor_2').morph({
			styles: {
				backgroundPositionX: ['px', -(pos * 103), -((pos + 1) * 103)]
			},
			effect: EE.outCubic
		});
		
		// 143 x 89
		I('monitor_1').morph({
			styles: {
				backgroundPositionX: ['px', -((pos + 1) * 142.8), -((pos + 2) * 142.8)]
			},
			effect: EE.outCubic
		});
		
		// 88 x 55
		I('monitor_3').morph({
			styles: {
				backgroundPositionX: ['px', -((pos + 2) * 88 + 36), -((pos + 3) * 88 + 36)]
			},
			effect: EE.outCubic
		});
		
		
		pos++;
		
		setTimeout(moveScreens, 3000);
	}
	
	moveScreens();
	
	

	
	
});

