		$(function () {
			var tabContainers = $('div.tabs_product_info_box > div');
			tabContainers.hide().filter(':first').show();
			
			$('div.tabs_product_info_box ul.tabNavigation_product a').click(function () {
				tabContainers.hide();
				tabContainers.filter(this.hash).show();
				$('div.tabs_product_info_box ul.tabNavigation_product a').removeClass('hover');
				$(this).addClass('hover');
				return false;
			}).filter(':first').click();
		});