// JavaScript Document
var objFrame;
var objHeaderFrame;

function changeIFrame(data){
	objFrame = document.getElementById("frm");
	objHeaderFrame = document.getElementById("headerFrm");
	
	switch(data){
		case "1":
			objFrame.src="home.html";
			objHeaderFrame.src = "homeHeader.html";
			break;
		case "2":
			objFrame.src="Consulting Services.html";
			objHeaderFrame.src = "Consulting ServicesHeader.html";
			break;
		case "3":
			objFrame.src="Developing Services.html";
			objHeaderFrame.src = "Developing ServicesHeader.html";
			break;
		case "4":
			objFrame.src="Outsourcing Services.html";
			objHeaderFrame.src = "Outsourcing ServicesHeader.html";
			break;
		case "5":
			objFrame.src="Training Services.html";
			objHeaderFrame.src = "Training ServicesHeader.html";
			break;
		case "6":
			objFrame.src="Industrial Solutions.html";
			objHeaderFrame.src = "Industrial SolutionsHeader.html";
			break;		
		case "7":
			objFrame.src="Products.html";
			objHeaderFrame.src = "ProductsHeader.html";	
	}
}

function backGround(value){
	switch(value){
		case "1":
		document.getElementById('td1').style.backgroundColor = "#FF9933"; 
		document.getElementById('td2').style.backgroundColor = "#3C535B";
		document.getElementById('td3').style.backgroundColor = "#3C535B"; 
		document.getElementById('td4').style.backgroundColor = "#3C535B";
		document.getElementById('td5').style.backgroundColor = "#3C535B"; 
		document.getElementById('td6').style.backgroundColor = "#3C535B";
		document.getElementById('td7').style.backgroundColor = "#3C535B";
		break;
		case "2":
		document.getElementById('td2').style.backgroundColor = "#FF9933"; 
		document.getElementById('td1').style.backgroundColor = "#3C535B";
		document.getElementById('td3').style.backgroundColor = "#3C535B"; 
		document.getElementById('td4').style.backgroundColor = "#3C535B";
		document.getElementById('td5').style.backgroundColor = "#3C535B"; 
		document.getElementById('td6').style.backgroundColor = "#3C535B";
		document.getElementById('td7').style.backgroundColor = "#3C535B";
		break;
		case "3":
		document.getElementById('td3').style.backgroundColor = "#FF9933"; 
		document.getElementById('td2').style.backgroundColor = "#3C535B";
		document.getElementById('td1').style.backgroundColor = "#3C535B"; 
		document.getElementById('td4').style.backgroundColor = "#3C535B";
		document.getElementById('td5').style.backgroundColor = "#3C535B"; 
		document.getElementById('td6').style.backgroundColor = "#3C535B";
		document.getElementById('td7').style.backgroundColor = "#3C535B";
		break;
		case "4":
		document.getElementById('td4').style.backgroundColor = "#FF9933"; 
		document.getElementById('td2').style.backgroundColor = "#3C535B";
		document.getElementById('td3').style.backgroundColor = "#3C535B"; 
		document.getElementById('td1').style.backgroundColor = "#3C535B";
		document.getElementById('td5').style.backgroundColor = "#3C535B"; 
		document.getElementById('td6').style.backgroundColor = "#3C535B";
		document.getElementById('td7').style.backgroundColor = "#3C535B";
		break;
		case "5":
		document.getElementById('td5').style.backgroundColor = "#FF9933"; 
		document.getElementById('td2').style.backgroundColor = "#3C535B";
		document.getElementById('td3').style.backgroundColor = "#3C535B"; 
		document.getElementById('td4').style.backgroundColor = "#3C535B";
		document.getElementById('td1').style.backgroundColor = "#3C535B"; 
		document.getElementById('td6').style.backgroundColor = "#3C535B";
		document.getElementById('td7').style.backgroundColor = "#3C535B";
		break;
		case "6":
		document.getElementById('td6').style.backgroundColor = "#FF9933"; 
		document.getElementById('td2').style.backgroundColor = "#3C535B";
		document.getElementById('td3').style.backgroundColor = "#3C535B"; 
		document.getElementById('td4').style.backgroundColor = "#3C535B";
		document.getElementById('td5').style.backgroundColor = "#3C535B"; 
		document.getElementById('td1').style.backgroundColor = "#3C535B";
		document.getElementById('td7').style.backgroundColor = "#3C535B";
		break;
		case "7":
		document.getElementById('td7').style.backgroundColor = "#FF9933"; 
		document.getElementById('td2').style.backgroundColor = "#3C535B";
		document.getElementById('td3').style.backgroundColor = "#3C535B"; 
		document.getElementById('td4').style.backgroundColor = "#3C535B";
		document.getElementById('td5').style.backgroundColor = "#3C535B"; 
		document.getElementById('td6').style.backgroundColor = "#3C535B";
		document.getElementById('td1').style.backgroundColor = "#3C535B";				 
		break;
		
	}
}