// JavaScript Document
function getCurPageName()
{
	var cPageName, spos;
	cPageName = document.URL;
	spos = cPageName.lastIndexOf("/");
	cPageName = cPageName.substr(spos+1, cPageName.length);
	return cPageName;
}

function hilightLink(rowId)
{
	var objTR;
	objTR = window.document.getElementById(rowId);
	objTR.style.background  = "#B0C1B7";
}

function setHilight()
{
	var cpage = getCurPageName();
	if(cpage == "introduction.html" || cpage == "quality_policy.html" || cpage == "key_personnel.html" || cpage == "certification.html" || cpage == "contact_detail.html")
	{
		hilightLink("aboutus");
	}
	else if(cpage == "area_of_activities.html")
	{
		hilightLink("activity");
	}
	else if(cpage == "consultancy_services.html"||cpage == "design_engineering.html"||cpage == "procon_services.html"||cpage == "supply_equipment.html" ||cpage == "inspection_expenditing.html"||cpage == "construction.html"||cpage == "designer_supervision.html"||cpage == "installation.html"||cpage == "post_commissioning.html"||cpage == "pollution_control_system.html"||cpage == "dry_system_dust.html")
	{
		hilightLink("service");
	}
	else if(cpage == "experience.html"||cpage == "major_project_cement.html"||cpage == "major_project_design.html" ||cpage == "major_project_fabrication.html"||cpage == "major_project_gas.html"||cpage == "major_project_iron.html"||cpage == "major_project_magnetic.html"||cpage == "major_project_sponge.html")
	{
		hilightLink("major");
	}
	else if(cpage == "clients.html"||cpage == "clients.html"||cpage == "clients.html" ||cpage == "clients.html"||cpage == "clients.html"||cpage == "clients.html"||cpage == "clients.html"||cpage == "clients.html")
	{
		hilightLink("clients");
	}
	else if(cpage == "pelletization_plant.html"||cpage == "other_plans.html")
	{
		hilightLink("future");
	}
	else if(cpage == "facilities.html"||cpage == "workshop.html"||cpage == "erection_equipments.html")
	{
		hilightLink("facilities");
	}
	else if(cpage == "enquiry_form_crusing.asp" ||cpage == "enquiry_form_gearbox.asp")
	{
		hilightLink("online");
	}
}
