//-------------------------------------------------------------------------------------------------
// productTabs.js
//
//  
//
// Sonalksis, 2009
//-------------------------------------------------------------------------------------------------

function tabOverview() 
{ 
	document.getElementById("overviewWrap").style.zIndex     = "2";
	document.getElementById("applicationsWrap").style.zIndex = "0";
	document.getElementById("featuresWrap").style.zIndex     = "0";
	
	document.getElementById("productTab1").style.color = "white";
	document.getElementById("productTab2").style.color = "black";
	document.getElementById("productTab3").style.color = "black";
}

function tabFeatures() 
{ 
	document.getElementById("overviewWrap").style.zIndex     = "0";
	document.getElementById("applicationsWrap").style.zIndex = "2";
	document.getElementById("featuresWrap").style.zIndex     = "0";
	
	document.getElementById("productTab1").style.color = "black";
	document.getElementById("productTab2").style.color = "white";
	document.getElementById("productTab3").style.color = "black";
}

function tabSpecs() 
{ 
	document.getElementById("overviewWrap").style.zIndex     = "0";
	document.getElementById("applicationsWrap").style.zIndex = "0";
	document.getElementById("featuresWrap").style.zIndex     = "2";
	
	document.getElementById("productTab1").style.color = "black";
	document.getElementById("productTab2").style.color = "black";
	document.getElementById("productTab3").style.color = "white";
}
