
window.addEvent('domready',

	function() {

		$ES('div#business-details ul.tab-anchors a').each(

			function (tabAnchor) {

				tabAnchor.onclick = function () {

					var tabPanelID = this.getProperty('href').split('#')[1];

					var tabPanel = $ES('#' + tabPanelID);

					if (tabPanel) {

						this.blur(); // blur focus rectangle

						$ES('div#business-details div.tab-panel').removeClass('active');

						$ES('div#business-details ul.tab-anchors > li.active').removeClass('active');

						tabPanel.addClass('active');

						this.getParent().addClass('active');

						return false;

					}

				};

			}

		);

	}

);
