<!--

function coloriseTables() {

	var colorsArr = Array('#EAEDE7', '#F1E9E7', '#EDEBE7', '#F3EED7', '#F2EFE5', '#F0ECE7', '#E5EEE3', '#EDEFDD', '#E8DDE4', '#EADFCF', '#F4E7D6');

	var tablesArr = document.all.main_content_1.getElementsByTagName('table');

	for (var a = 0, b = tablesArr.length; a < b; a++) {

		if (tablesArr[a].getAttribute('price') == 'true') {

			var counter = 1;

			for (var c = 0, d = tablesArr[a].rows.length; c < d; c++) {

				for (var e = 0, f = tablesArr[a].rows[c].cells.length; e < f; e++) {

					if (tablesArr[a].rows[c].cells[e].tagName.toLowerCase() == 'th') {

						continue;

					}

					if (e < 2) {

						tablesArr[a].rows[c].cells[e].className = 'border_' + (e + 1);

						continue;

					}

					tablesArr[a].rows[c].cells[e].style.backgroundColor = colorsArr[e - 2];

					if (tablesArr[a].rows[c].cells[e].innerHTML.length == 0) {

						tablesArr[a].rows[c].cells[e].innerHTML = '&nbsp;';

					}

				}

			}

		}

	}

}




try {

	DA;

}

catch (e) {

	if (document.all.main_content_1) {

		coloriseTables();

	}

}

//-->