// JavaScript Document
var IdArray = Array('prodct_detail','ask_que','price_match','product_rating','send_friend','features','press','options','whatInclude','delivery','contact');

function show_product_tab(id)
{
	for(i=0;i<IdArray.length;i++)
	{
		if(IdArray[i] == id)
		{
			document.getElementById(IdArray[i]).style.display = "";
			document.getElementById("li_"+IdArray[i]).className = "active";
		}
		else
		{
			if(document.getElementById(IdArray[i]))
			{
				document.getElementById(IdArray[i]).style.display = "none";
				document.getElementById("li_"+IdArray[i]).className = "";
			}
		}
	}
}