function zinit()
{
	sStrokeStyle = "rgba(180, 180, 180, 0.5)";

	eFindLine = new elasticLine({
		canvas : {
			id : 'find-canvas',
			containerId : 'find-canvas-container'
		},
		strokeStyle : sStrokeStyle,
		lineType : 'bezier',
		linePoints : [
			{
				xFixed : false,
				xRatio : 0.64,
				yFixed : true,
				y : 2
			},
			{
				xFixed : true,
				x : 460,
				yFixed : true,
				y : 110
			}
		],
		controlPoints : [
			{
				xFixed : false,
				xRatio : 0.57,
				yFixed : true,
				y : 20
			},
			{
				xFixed : false,
				xRatio : 0.5,
				yFixed : true,
				y : 60
			}
		]
	});

	eBestLine = new elasticLine({
		canvas : {
			id : 'best-canvas',
			containerId : 'best-canvas-container'
		},
		strokeStyle : sStrokeStyle,
		lineType : 'bezier',
		linePoints : [
			{
				xFixed : false,
				xRatio : 0.59,
				yFixed : true,
				y : 0
			},
			{
				xFixed : false,
				xRatio : 0.85,
				yFixed : true,
				y : 150
			}
		],
		controlPoints : [
			{
				xFixed : false,
				xRatio : 0.85,
				yFixed : true,
				y : 30
			},
			{
				xFixed : false,
				xRatio : 0.9,
				yFixed : true,
				y : 80
			}
		]
	});


	eKatalogLine = new elasticLine({
		canvas : {
			id : 'katalog-canvas',
			containerId : 'katalog-canvas-container'
		},
		strokeStyle : sStrokeStyle,
		lineType : 'bezier',
		linePoints : [
			{
				xFixed : true,
				x : 150,
				yFixed : true,
				y : 0
			},
			{
				xFixed : false,
				xRatio : 0.20,
				yFixed : true,
				y : 125
			}
		],
		controlPoints : [
			{
				xFixed : false,
				xRatio : 0.16,
				yFixed : true,
				y : 130
			},
			{
				xFixed : false,
				xRatio : 0.2,
				yFixed : true,
				y : 125
			}
		]
	});

	eAboutLine = new elasticLine({
		canvas : {
			id : 'about-canvas',
			containerId : 'about-canvas-container'
		},
		strokeStyle : sStrokeStyle,
		lineType : 'bezier',
		linePoints : [
			{
				xFixed : false,
				xRatio : 0.27,
				yFixed : true,
				y : 0
			},
			{
				xFixed : true,
				x : 0,
				yFixed : true,
				y : 200
			}
		],
		controlPoints : [
			{
				xFixed : false,
				xRatio : 0.25,
				yFixed : true,
				y : 0
			},
			{
				xFixed : false,
				xRatio : 0.1,
				yFixed : true,
				y : 0
			}
		]
	});

	eNeprovLine = new elasticLine({
		canvas : {
			id : 'neprov-canvas',
			containerId : 'neprov-canvas-container'
		},
		strokeStyle : sStrokeStyle,
		lineType : 'bezier',
		linePoints : [
			{
				xFixed : false,
				xRatio : 0.24,
				yFixed : true,
				y : 0
			},
			{
				xFixed : true,
				x : 139,
				yFixed : true,
				y : 245
			}
		],
		controlPoints : [
			{
				xFixed : false,
				xRatio : 0.1,
				yFixed : true,
				y : 100
			},
			{
				xFixed : false,
				xRatio : 0.14,
				yFixed : true,
				y : 200
			}
		]
	});

	window.setInterval ("redrawEverything()", 350);
}



