// JavaScript Document
function ShowMenu(id,mid)
{
	var menuID
	menuID=document.getElementById(mid);
	menuID.style.color="#7E6338";	
	menuID=document.getElementById(id);
	menuID.style.visibility="visible";
 }
function HideMenu(id,mid)
{
	var menuID
	menuID=document.getElementById(mid);
	menuID.style.color="#676767"
	menuID=document.getElementById(id);
	menuID.style.visibility="hidden";
 }

function ShowSubMenu(id)
{
	var menuID
	menuID=document.getElementById(id);
	menuID.style.visibility="visible";
 }

function HideSubMenu(id)
{
	var menuID
	menuID=document.getElementById(id);
	menuID.style.visibility="hidden";
 }

function overColor(id,lkID)
{
	itemID=document.getElementById(id);
	itemID.style.backgroundColor="#ACB075"
	itemID=document.getElementById(lkID);
	itemID.style.color="#FFFFFF"
 }
 function outColor(id,lkID)
 {
	 itemID=document.getElementById(id);
	itemID.style.backgroundColor="#9F9E13"
	itemID=document.getElementById(lkID);
	itemID.style.color="#FFFFFF";
  }

function addItem(label,rowID,linkID,url)
{
	var strItem
	strItem="<tr height='16' id='"+rowID+"' onMouseOver=overColor('"+rowID+"','"+linkID+"') onMouseOut=outColor('"+rowID+"','"+linkID+"')>" 
	strItem=strItem +"<td height='18 px' onClick='window.location.href=\""+url+"\"'>&nbsp;&nbsp;&nbsp;<a id='"+linkID+"' href='"+url+"' class='navigationmenu1' style='color:#FFFFFF'>"+label+"</a></td></tr>"
	document.write(strItem);
 }
var strMenuLevel0
var mnu1Level1
strMenuLevel0="<table class='navigationmenu' bgcolor='#9F9E13' border='0' width='100%' align='center' cellpadding='0' cellspacing='0' style='cursor:hand'><tr align='center'>"
strMenuLevel0=strMenuLevel0 +"<td id='menu1' width='115'><a href='index.htm' class='navigationmenu'>Home</a></td>"
strMenuLevel0=strMenuLevel0 +"<td id='menu2' width='132' onMouseOver=ShowMenu('m1','menu2') onMouseOut=HideMenu('m1','menu2')><a href='company_profile.html' class='navigationmenu'>Company Profile</a></td>"
strMenuLevel0=strMenuLevel0 +"<td id='menu3' width='132' onMouseOver=ShowMenu('m2','menu3') onMouseOut=HideMenu('m2','menu3')><a href='services_offering.htm' class='navigationmenu'>Service Offering</a></td>"
strMenuLevel0=strMenuLevel0 +"<td id='menu4' width='115'><a href='careers.htm' class='navigationmenu'>Careers</a></td>"
strMenuLevel0=strMenuLevel0 +"<td id='menu5' width='115'><a href='faq.htm' class='navigationmenu'>FAQ's</a></td>"
strMenuLevel0=strMenuLevel0 +"<td id='menu6' width='115'><a href='testimonials.htm' class='navigationmenu'>Testimonials</a></td>"
strMenuLevel0=strMenuLevel0 +"<td id='menu7' width='115'><a href='contact_us.htm' class='navigationmenu'>Contact Us</a></td>"
document.write(strMenuLevel0);
document.write("<tr>");
document.write("<td></td>")
//----------------------------Gallery Menu BEGIN----------------------------------------------------
document.write("<td onMouseOver=ShowMenu('m1','menu2') onMouseOut=HideMenu('m1','menu2')>"); //Promotion menu begin
document.write("<span id='m1' style='position:absolute;z-index:2;visibility:hidden;'>");
document.write("<table class='navigationmenu1' bgcolor='#9F9E13' width='155 px' cellpadding='0' cellspacing='0'>")
	addItem("Profile","m1s1","link1","company_profile.html")
	addItem("Operations","m1s2","link2","operations.htm")						
document.write("</table></span>")
document.write("</td>")
//-----------------------------Gallery MENU END------------------------------------------------------
//----------------------------Evolution Menu BEGIN----------------------------------------------------
document.write("<td onMouseOver=ShowMenu('m2','menu2') onMouseOut=HideMenu('m2','menu2')>"); //Promotion menu begin
document.write("<span id='m2' style='position:absolute;z-index:2;visibility:hidden;'>");
document.write("<table class='navigationmenu1' bgcolor='#9F9E13' width='155 px' cellpadding='0' cellspacing='0'>")
	addItem("Core Services","m2s1","link14","services_offering.htm")
	addItem("Industries Serviced","m2s2","link15","services_offering1.htm")
document.write("</table></span>")
document.write("</td>")
//-----------------------------Evolution MENU END------------------------------------------------------

document.write("</tr></table>"); //main table ends