
var pxdshop_tabs = new Array('singleproduct', 'boughtbyothers', 'tipafriend', 'ratinglist');

function showTab(id) {
	if (document.getElementById(id)!= null) {
		document.getElementById(id).style.display = 'block';
		$(id + '_tabLink').addClassName('current');
		
	}
}

function hideTabs(butnot) {
	
	for (i=0; i<pxdshop_tabs.length; i++) {
		document.getElementById(pxdshop_tabs[i]).style.display = 'none';
		if ($(pxdshop_tabs[i] + '_tabLink')!= null) {
			$(pxdshop_tabs[i] + '_tabLink').removeClassName('current');
		}
		/*active = false;*/
	}
	
	if (butnot!='' && butnot!=null) {
		showTab(butnot);	
	}
}
