function ChangeColor(obj, i, color)
{
    //obj.style.background = color;
    document.getElementById("product-brief").innerHTML = ProductBrief[i];
    //document.getElementById("product-image").src = Product[i];
    document.getElementById("menubarUp").src = MenuUp[i];
	document.getElementById("menubarOver").src = MenuOver[i];
	document.getElementById("menubarDown").src = MenuDown[i];
    document.getElementById("product-link").href = ProductLink[i];
}

function ChangeDisableSample(i)
{
	document.getElementById("product-sample").disabled = DisableSample[i];
}

