function productDetailTab(code, el) {
	var tab = $(el);
	var text = $('text_'+code);
	var tabs = $$('#info_tabs li a');
	var texts = $$('#info_tabs div');
	tabs.each(function(item){item.removeClassName('active');});
	texts.each(function(item){item.removeClassName('active');});
	tab.addClassName('active');
	text.addClassName('active');
	return false;
}

function imageSwitchSet(url) {
	baseImage.writeAttribute('src', url);
}
function imageSwitchReset() {
	baseImage.writeAttribute('src', baseImageUrl);
}
