function settitle()
{
    //do not change this
    var urlStr = window.location.href;
    var pageNameArray = [];
    var titleArray = [];
   	//
	
    /*
        Change the string values here according to your page name.
        For example :
            http://Website.com/aboutus then pageNameArray[1] = "/aboutus" and titleArray["/aboutus"] = "About Website";
            http://Website.com/contactus then pageNameArray[1] = "/contactus" and titleArray["/contactus"] = "Contact Website";
            if
            http://Website.com/aboutus.shtml then pageNameArray[1] = "/aboutus.shtml" and titleArray["/aboutus"] = "About Website";
            http://Website.com/contactus.shtml then pageNameArray[1] = "/contactus.shtml" and titleArray["/contactus"] = "Contact Website";
    */
   
    pageNameArray[0] = "/index.shtml";
    pageNameArray[1] = "/company_info.shtml";
    pageNameArray[2] = "/contact_us.shtml";
    pageNameArray[3] = "/contract_services.shtml";
    pageNameArray[4] = "/emergency_pumping.shtml";
	pageNameArray[5] = "/dewatering.shtml";
   	pageNameArray[6] = "/storm_surface_water.shtml";
    pageNameArray[7] = "/sewage_bypass.shtml";
    pageNameArray[8] = "/creek_bypass.shtml";
    pageNameArray[9] = "/industrial.shtml";
    pageNameArray[10] = "/drilling.shtml";
    pageNameArray[11] = "/water_testing_flushing.shtml";
    pageNameArray[12] = "/enviro_services.shtml";
	pageNameArray[13] = "/pumping_equipment.shtml";
   	pageNameArray[14] = "/pumps.shtml";
    pageNameArray[15] = "/pipes_hose_fittings.shtml";
    pageNameArray[16] = "/generators_portable_lights.shtml";
    pageNameArray[17] = "/discharge_filtration_treatment.shtml";
	pageNameArray[18] = "/wheel_wash_system.shtml";
    pageNameArray[19] = "/pumps_vaccum.shtml";
    pageNameArray[20] = "/pumps_dri-prime.shtml";
	pageNameArray[21] = "/pumps_highhead.shtml";
   	pageNameArray[22] = "/pumps_electric.shtml";
    pageNameArray[23] = "/pumps_hydraulic.shtml";
    pageNameArray[24] = "/pumps_tempfire.shtml";
    pageNameArray[25] = "/pumps_wet-prime.shtml";
	pageNameArray[26] = "/need_pumps.shtml";
	pageNameArray[27] = "/careers.shtml";
	pageNameArray[28] = "/creek_bypass.shtml";
	pageNameArray[29] = "/media.shtml";
	
    //Use same name in the array as page name. e.g
	
    titleArray["/index.shtml"] = "Aquatech Dewatering Company Inc., Dewatering Specialist, Dewatering Contractor";
    titleArray["/company_info.shtml"] = "Aquatech Dewatering Services Toronto";
    titleArray["/contact_us.shtml"] = "Contact Aquatech, Emergency Pumping Services, Dewatering Specialist";
    titleArray["/contract_services.shtml"] = "Contract Services, Pumping Company, Contract Dewatering Services";
	titleArray["/emergency_pumping.shtml"] = "Emergency Pumping, Pumping Equipment, Dewatering";
	titleArray["/dewatering.shtml"] = "Dewatering,Contract Dewatering Services, Construction Dewatering";
	titleArray["/storm_surface_water.shtml"] = "Storm and Surface Water Pumping, Pumping Services, Pumps";
    titleArray["/sewage_bypass.shtml"] = "Sewage Bypass Pumping, Sewage Pumps, Bypass Pumps";
    titleArray["/creek_bypass.shtml"] = "Creek Bypass Pumping";
    titleArray["/industrial.shtml"] = "Industrial Pumping";
	titleArray["/drilling.shtml"] = "Drilling Services, Vacuum Wells, Dewatering Wells";
    titleArray["/water_testing_flushing.shtml"] = "Watermain Testing and Flushing, Watermain Flushing Procedures, Watermain Testing Services";
    titleArray["/enviro_services.shtml"] = "Environmental Services";
    titleArray["/pumping_equipment.shtml"] = "Pumps, Water Pumps, Portable Pumps";
	titleArray["/pumps.shtml"] = "Pumps, Pump Rental and Sales, Diesel Pumps";
    titleArray["/pipes_hose_fittings.shtml"] = "Pipes, Hose and Fittings, Header, Suction, Discharge, Rental and Sales";
    titleArray["/generators_portable_lights.shtml"] = "Generators, Portable Lights, Rental and Sale";
    titleArray["/discharge_filtration_treatment.shtml"] = "Discharge Filtration and Treatment, Dewatering Contractor, Enviro-tanks";
	titleArray["/wheel_wash_system.shtml"] = "Mobile Wheel Wash System, Street Cleaning, Sediment Control";
    titleArray["/pumps_vaccum.shtml"] = "Vacuum  Assisted Wellpoint Pumps, Dewatering Systems, Equipment Rental";
    titleArray["/pumps_dri-prime.shtml"] = "Dri-Prime Centrifugal Pumps";
    titleArray["/pumps_highhead.shtml"] = "High Head & Jetting / HL Series Pumps";
	titleArray["/pumps_electric.shtml"] = "Electric Submersible Pumps";
    titleArray["/pumps_hydraulic.shtml"] = "Hydraulic Submersible Pumps";
    titleArray["/pumps_tempfire.shtml"] = "Fire Pumps";
    titleArray["/pumps_wet-prime.shtml"] = "Wet-Prime Gas Pumps";
	
	titleArray["/need_pumps.shtml"] = "Emergency Pumps";
	titleArray["/careers.shtml"] = "Careers, Job Opportunities, Current Positions Available";
	titleArray["/creek_bypass.shtml"] = "Creek Bypass Pumping, Best Management Practices, Environmentally Friendly Pumping";
	titleArray["/media.shtml"] = "Media, New Pump, New Pumps";

    //Change this default page title if you want. It will show when there is no page title found
    document.title = "Aquatech Dewatering Toronto";

    //do not change this
    for (var i=0; i<=pageNameArray.length; i++)
    {
        if (urlStr.indexOf(pageNameArray[i]) != -1)
            document.title = titleArray[pageNameArray[i]];
    }
	//
}
