// Fix external links for strict XHTML compliance.
Event.observe(window, "load", function ()
{
	$$("a").each(function (obj)
	{
		if (obj.href != "" && obj.rel == "external")
		{
			obj.target = "_blank";
		}
	});
});

// Tab functionality for Our Product page.
function showTab(index)
{
	$$("table.tabs td a.tab-button").each(function (obj)
	{
		if (obj.id.indexOf("-" + index) != -1)
		{
			obj.addClassName("active");
		}
		else
		{
			obj.removeClassName("active");
		}
	});
	
	$$("table.tabs td div.tab").each(function (obj)
	{
		if (obj.id.indexOf("-" + index) != -1)
		{
			obj.style.display = "block";
		}
		else
		{
			obj.style.display = "none";
		}
	});
}
