// JavaScript Document
function tagover(_this)
{
	if (_this.className=="product_tagbarm"){_this.className="product_tagbaro";}
}
function tagout(_this)
{
	if (_this.className=="product_tagbaro"){_this.className="product_tagbarm";}
}
function tagclick(_this)
{
	var x
	for(x=1 ; x<=3 ; x++)
		{
		name = "tag" + x;
		document.getElementById(name).className = "product_tagbarm";
		contentname = "tagcontent" + x;
		document.getElementById(contentname).style.display = "none"
		}
	_this.className = "product_tagbard";
	content_name="tagcontent" + _this.id.substr(3,1);
	document.getElementById(content_name).style.display = "";
}