window.addEvent('domready', function () {
	var about = $('about'),
		prices = $('prices'),
		downloadSc10 = $('downloadSc10'),
		stations = $('stations');	
		
	if (about) {
		var downloadSc10Height = parseInt(downloadSc10.getStyle('height')),
			aboutHeight = parseInt(about.getStyle('height'));
		if (downloadSc10Height > aboutHeight) {
			about.setStyle('height', downloadSc10Height);
		} else if (downloadSc10Height < aboutHeight) {
			downloadSc10.setStyle('height', aboutHeight);
		}
	}
	if (prices) {
		var stationsHeight = parseInt(stations.getStyle('height')),
			pricesHeight = parseInt(prices.getStyle('height'));
		if (stationsHeight > pricesHeight) {
			prices.setStyle('height', stationsHeight);
		} else if (pricesHeight > stationsHeight) {
			stations.setStyle('height', pricesHeight);
		}
	}

	new GTSteps('#imageList');
	new SmoothScroll();
});