/////////////////////////////////////////////////////////////////////////////
// Function : NavNode (constructor)
// Comments :
/////////////////////////////////////////////////////////////////////////////
function NavNode(id, label, href, parent)
{
	this.m_parent = null;
	this.m_level = 0;

	if (parent)
	{
		this.m_parent = parent;
		this.m_level = parent.m_level+1;
	}

	this.m_id = id;

	// assume that m_label will most often be used directly as HTML
	this.m_rawlabel = label;

	label = label.replace(/&/g, '&amp;');
	label = label.replace(/</g, '&lt;');
	label = label.replace(/>/g, '&gt;');
	label = label.replace(/"/g, '&quot;');

	this.m_label = label;

	this.m_href = href;
	this.m_subNodes = new Array();

	var argValues = NavNode.arguments;
	var argCount = NavNode.arguments.length;

	for (i = 4 ; i < argCount ; i++)
	{
		var attrName = argValues[i].split("==")[0];
		var attrValue = argValues[i].split("==")[1];

		eval("this.cp_" + attrName + " = '" + attrValue + "';");
	}

	NavNode.prototype.addNode = addNode;
	NavNode.prototype.isSelected = isSelected;
}

/////////////////////////////////////////////////////////////////////////////
// Function : addNode
// Comments :
/////////////////////////////////////////////////////////////////////////////
function addNode(id, label, href)
{
	var newIndex = this.m_subNodes.length;
	var newNode = new NavNode(id, label, href, this);

	var argValues = addNode.arguments;
	var argCount = addNode.arguments.length;

	for (i = 3 ; i < argCount ; i++)
	{
		var attrName = argValues[i].split("==")[0];
		var attrValue = argValues[i].split("==")[1];

		eval("newNode.cp_" + attrName + " = '" + attrValue + "';");
	}

	this.m_subNodes[newIndex] = newNode;
	return newNode;
}

/////////////////////////////////////////////////////////////////////////////
// Function : isSelected
// Comments :
/////////////////////////////////////////////////////////////////////////////
function isSelected()
{
    var pos = window.location.href.lastIndexOf("/");
    var docname = window.location.href.substring(pos+1, window.location.href.length);

    pos = this.m_href.lastIndexOf("/");
    var myname = this.m_href.substring(pos+1, this.m_href.length);

    if (docname == myname)
		return true;
	else
		return false;
}

/////////////////////////////////////////////////////////////////////////////
// Function : customSectionPropertyExists
// Comments :
/////////////////////////////////////////////////////////////////////////////
function customSectionPropertyExists(csp)
{
	return (typeof csp != _U && csp != null);
}

/////////////////////////////////////////////////////////////////////////////
// Function : getCustomSectionProperty
// Comments :
/////////////////////////////////////////////////////////////////////////////
function getCustomSectionProperty(csp)
{
	if (customSectionPropertyExists(csp))
	{
		return csp;
	}
	else
	{
		return "";
	}
}

/////////////////////////////////////////////////////////////////////////////

var g_navNode_Root = new NavNode('44','Home',ssUrlPrefix + 'index.htm',null,'dynamicListIsIndex==FALSE');
g_navNode_0=g_navNode_Root.addNode('45','About Us',ssUrlPrefix + 'AboutUs/index.htm','dynamicListIsIndex==TRUE','isFragment==FALSE','secondaryUrlVariableField==C10');
g_navNode_0_0=g_navNode_0.addNode('58','Diversity Commitment',ssUrlPrefix + 'AboutUs/DiversityCommitment/index.htm','Description==We recognize, respect and appreciate the valuable and different perspectives that each of us brings to the work environment, our company and our customers.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_0_0_0=g_navNode_0_0.addNode('359','Supplier Diversity',ssUrlPrefix + 'AboutUs/DiversityCommitment/SupplierDiversity/index.htm','Description==We are committed to increasing utilization of minority and women-owned businesses, so that our suppliers reflect the diversity of the communities we are privileged to serve.','contributorOnly==false','secondaryUrlVariableField==C10');
g_navNode_1=g_navNode_Root.addNode('46','Utility Services',ssUrlPrefix + 'UtilityServices/index.htm','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10','yourAccount==true');
g_navNode_1_0=g_navNode_1.addNode('312','Your Account',ssUrlPrefix + 'UtilityServices/YourAccount/index.htm','Description==Access your Alliant Energy customer account online - anytime.','secondaryUrlVariableField==C10');
g_navNode_1_1=g_navNode_1.addNode('66','Customer Service',ssUrlPrefix + 'UtilityServices/CustomerService/index.htm','Description==Find everything you need to know about your Alliant Energy account, including starting or stopping service, payment options, meter reading, assistance programs and more.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10','yourAccount==true');
g_navNode_1_1_0=g_navNode_1_1.addNode('83','Payment Options',ssUrlPrefix + 'UtilityServices/CustomerService/BillingandPaymentOptions/index.htm','Description==Everyone uses energy in different ways - and pays their bills in different ways. Make bill paying easier with one of our convenient options.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_1_1=g_navNode_1_1.addNode('97','Managing Your Bill',ssUrlPrefix + 'UtilityServices/CustomerService/ManagingYourBill/index.htm','Description==Learn how to get your payment to us safely, make a payment arrangement, avoid disconnection or understand all those abbreviations and acronyms.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_1_2=g_navNode_1_1.addNode('98','Meter Reading',ssUrlPrefix + 'UtilityServices/CustomerService/MeterReading/index.htm','Description==Help us ensure an accurate bill by keeping your energy meters accessible, and learn how to read your own meter.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_1_3=g_navNode_1_1.addNode('103','Assistance Programs',ssUrlPrefix + 'UtilityServices/CustomerService/AssistancePrograms/index.htm','Description==Learn about energy assistance programs available, including the Hometown Energy Fund, LIHEAP, weatherization and gift certificates.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_1_4=g_navNode_1_1.addNode('104','Protecting Your Power',ssUrlPrefix + 'UtilityServices/CustomerService/ProtectingYourPower/index.htm','Description==Find out how Alliant Energy keeps your energy flowing safely and reliably - and how you can help.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_2=g_navNode_1.addNode('67','For Your Home',ssUrlPrefix + 'UtilityServices/ForYourHome/index.htm','Description==Look here for easy energy savers, rebate programs, appliance repair plans, safety reminders and more for your home.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10','yourAccount==true');
g_navNode_1_2_0=g_navNode_1_2.addNode('136','Easy Energy Savers',ssUrlPrefix + 'UtilityServices/ForYourHome/EasyEnergySavers/index.htm','Description==Wondering where all that hot air is going? Buying a new refrigerator? Building a new home? Find out how energy efficiency can make a big difference in your utility bills.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_2_1=g_navNode_1_2.addNode('137','Rewards \x26 Incentives',ssUrlPrefix + 'UtilityServices/ForYourHome/RewardsIncentives/index.htm','Description==Ready to invest in energy efficiency? Take advantage of money-saving rewards and incentives on energy-smart products for your home.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_2_1_0=g_navNode_1_2_1.addNode('149','Iowa',ssUrlPrefix + 'UtilityServices/ForYourHome/RewardsIncentives/IowaIncentivePrograms/index.htm','Description==From insulation to air conditioning and laundry to light bulbs, you can earn money back or take advantage of low-interest financing on energy-saving products through Alliant Energy\\x27s cash rewards for Iowa homeowners.','contributorOnly==false','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_2_1_1=g_navNode_1_2_1.addNode('150','Minnesota',ssUrlPrefix + 'UtilityServices/ForYourHome/RewardsIncentives/MinnesotaIncentivePrograms/index.htm','Description==With Alliant Energy rewards for Minnesota customers, we\\x27ll help you invest in high-efficiency furnaces, washers, windows and more - and you\\x27ll enjoy lower utility bills for years to come.','contributorOnly==false','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_1_2_1_2=g_navNode_1_2_1.addNode('151','Wisconsin',ssUrlPrefix + 'UtilityServices/ForYourHome/RewardsIncentives/WisconsinIncentivePrograms/index.htm','Description==Energy-smart Wisconsin residents might be eligible for bill credits, cash-back rewards and other incentives from Alliant Energy and Focus on Energy.','contributorOnly==false','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_1_2_2=g_navNode_1_2.addNode('138','Service, Repair \x26 Protection Plans',ssUrlPrefix + 'UtilityServices/ForYourHome/ServiceRepairProtectionPlans/index.htm','Description==Alliant Energy offers a home maintenance plan to ease your mind and your wallet.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_2_2_0=g_navNode_1_2_2.addNode('171','Appliance Protection Plan',ssUrlPrefix + 'UtilityServices/ForYourHome/ServiceRepairProtectionPlans/ApplianceProtectionPlan/index.htm','Description==\x3cb\x3eFor customers in Iowa, Minnesota, Sheboygan, Lake Geneva and Elkhorn, Wisconsin\x3c/b\x3e\x3cbr\x3eProtect your home against the high cost and hassle of repairs on your furnace, central air conditioning and major appliances.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_2_3=g_navNode_1_2.addNode('139','Electric \x26 Natural Gas Safety',ssUrlPrefix + 'UtilityServices/ForYourHome/ElectricNaturalGasSafety/index.htm','Description==Most electric and natural gas accidents can be prevented - all it takes is remembering the basic safety rules, keeping your appliances in good repair, and knowing how to spot potential hazards.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_3=g_navNode_1.addNode('68','For Your Farm',ssUrlPrefix + 'UtilityServices/ForYourFarm/index.htm','Description==Learn about energy conservation, rebates and financing programs, electrical safety, stray voltage prevention and on-site generation for your farm.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10','yourAccount==true');
g_navNode_1_3_0=g_navNode_1_3.addNode('189','News \x26 Resources',ssUrlPrefix + 'UtilityServices/ForYourFarm/NewsResources/index.htm','Description==Check the calendar of upcoming events, find links to other informative sites and more.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_3_1=g_navNode_1_3.addNode('190','Rewards \x26 Financing',ssUrlPrefix + 'UtilityServices/ForYourFarm/RewardsFinancing/index.htm','Description==From automatic milker takeoffs to variable speed drives, Alliant Energy can help you invest in ag technology that will lower your energy bills for years to come.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_3_2=g_navNode_1_3.addNode('191','Energy Conservation',ssUrlPrefix + 'UtilityServices/ForYourFarm/EnergyConservation/index.htm','Description==Find out how to reduce energy consumption without sacrificing productivity or convenience, and calculate your potential savings.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_3_3=g_navNode_1_3.addNode('192','Electrical Safety',ssUrlPrefix + 'UtilityServices/ForYourFarm/ElectricalSafety/index.htm','Description==Keep your farm safe by reviewing the guidelines for wiring, grounding, maintenance, lightning protection and more.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_3_4=g_navNode_1_3.addNode('193','Stray Voltage',ssUrlPrefix + 'UtilityServices/ForYourFarm/StrayVoltage/index.htm','Description==Read about the causes and consequences of stray voltage and get advice from the experts at Alliant Energy.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_3_5=g_navNode_1_3.addNode('194','On-Site Generation',ssUrlPrefix + 'UtilityServices/ForYourFarm/On-SiteGeneration/index.htm','Description==Learn about standby generators, anaerobic digesters, microturbines, wind power and more.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_4=g_navNode_1.addNode('70','For Your Business',ssUrlPrefix + 'UtilityServices/ForYourBusiness/index.htm','Description==Whether you manage an office, retail shop, factory or even a city, you can take advantage of Alliant Energy\\x27s expertise to maximize your bottom line.','dynamicListIsIndex==TRUE','isFragment==true','secondaryUrlVariableField==C10','yourAccount==true');
g_navNode_1_4_0=g_navNode_1_4.addNode('230','Products \x26 Services',ssUrlPrefix + 'UtilityServices/ForYourBusiness/ProductsServices/index.htm','Description==From energy-efficiency rebates to on-site generation, Alliant Energy has innovative solutions that can increase your organization\\x27s productivity and profits.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_4_0_0=g_navNode_1_4_0.addNode('235','Rewards \x26 Incentives',ssUrlPrefix + 'UtilityServices/ForYourBusiness/ProductsServices/BusinessRewardsIncentives/index.htm','Description==Don\\x27t miss out on money-saving incentives on high-efficiency furnaces, central air conditioners, lighting, replacement windows and more - or take advantage of custom rebates tailored for your business.','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_1_4_0_0_0=g_navNode_1_4_0_0.addNode('247','Iowa',ssUrlPrefix + 'UtilityServices/ForYourBusiness/ProductsServices/BusinessRewardsIncentives/IowaBusinessIncentivePrograms/index.htm','Description==From air conditioning to windows, you can earn cash back or take advantage of low-interest financing on energy-saving products through Alliant Energy\\x27s cash rewards for Iowa businesses.','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_1_4_0_0_1=g_navNode_1_4_0_0.addNode('248','Minnesota',ssUrlPrefix + 'UtilityServices/ForYourBusiness/ProductsServices/BusinessRewardsIncentives/MinnesotaBusinessIncentivePrograms/index.htm','Description==With Alliant Energy\\x27s rebates for Minnesota businesses, we\\x27ll help you invest in high-efficiency furnaces, lighting, windows and more - and you\\x27ll enjoy lower energy costs that will maximize your bottom line.','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_1_4_0_0_2=g_navNode_1_4_0_0.addNode('266','Wisconsin',ssUrlPrefix + 'UtilityServices/ForYourBusiness/ProductsServices/BusinessRewardsIncentives/Wisconsin/index.htm','Description==The \x3ci\x3eFocus on Energy\x3c/i\x3e business programs, and WPL\\x27s Renewables Incentive Program, can help Wisconsin businesses, industries, schools and local governments identify and install energy and cost-saving efficiency measures. ','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_1_4_0_1=g_navNode_1_4_0.addNode('236','Project Consulting \x26 Financing',ssUrlPrefix + 'UtilityServices/ForYourBusiness/ProductsServices/ProjectConsultingFinancing/index.htm','Description==Whether you\\x27re retrofitting an existing system or building a new facility, our experts will help you identify, design and implement energy efficiency from the ground up.','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_1_4_0_1_0=g_navNode_1_4_0_1.addNode('267','Iowa',ssUrlPrefix + 'UtilityServices/ForYourBusiness/ProductsServices/ProjectConsultingFinancing/ForIowaBusinesses/index.htm','Description==Whether you\\x27re retrofitting an existing system or building a new facility, our experts will help you identify, design and implement energy efficiency from the ground up.','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_1_4_0_1_0_0=g_navNode_1_4_0_1_0.addNode('265','Performance Contracting',ssUrlPrefix + 'UtilityServices/ForYourBusiness/ProductsServices/ProjectConsultingFinancing/ForIowaBusinesses/PerformanceContracting/index.htm','Description==Performance Contracting is a service that provides a comprehensive retrofit or construction package featuring no out-of-pocket expenses.','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_1_4_0_1_1=g_navNode_1_4_0_1.addNode('268','Wisconsin \x26 Minnesota',ssUrlPrefix + 'UtilityServices/ForYourBusiness/ProductsServices/ProjectConsultingFinancing/ForWisconsinMinnesotaBusinesses/index.htm','Description==From outsourcing to performance contracting, Alliant Energy can help you plan and finance energy-saving upgrades.','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_1_4_0_2=g_navNode_1_4_0.addNode('237','Infrastructure \x26 Generation',ssUrlPrefix + 'UtilityServices/ForYourBusiness/ProductsServices/InfrastructureOn-SiteGeneration/index.htm','Description==Alliant Energy is your single-source solution for infrastructure design, engineering, installation and maintenance.','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_1_4_0_3=g_navNode_1_4_0.addNode('238','Power Quality Engineering',ssUrlPrefix + 'UtilityServices/ForYourBusiness/ProductsServices/PowerQualityEngineering/index.htm','Description==Armed with the latest analytical technology and years of expertise, Alliant Energy\\x27s PowerCure team works with you to identify and solve power quality problems.','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_1_4_0_4=g_navNode_1_4_0.addNode('239','Outdoor Lighting',ssUrlPrefix + 'UtilityServices/ForYourBusiness/ProductsServices/OutdoorLighting/index.htm','Description==Keep your public spaces safe and beautiful with energy-efficient technology from Impact Lighting.','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_1_4_0_5=g_navNode_1_4_0.addNode('241','Energy Usage \x26 Tracking',ssUrlPrefix + 'UtilityServices/ForYourBusiness/ProductsServices/EnergyUsageTracking/index.htm','Description==These innovative services will provide the detailed energy data you need to maximize your bottom line.','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_1_4_0_6=g_navNode_1_4_0.addNode('370','Fleet E-Auction',ssUrlPrefix + 'UtilityServices/ForYourBusiness/ProductsServices/FleetE-Auction/index.htm','Description==Bid on quality used fleet vehicles at our quarterly online auctions.','secondaryUrlVariableField==C10');
g_navNode_1_4_1=g_navNode_1_4.addNode('232','Energy Expertise',ssUrlPrefix + 'UtilityServices/ForYourBusiness/EnergyExpertise/index.htm','Description==Check out our library of information to learn more about energy efficiency, distributed generation, power quality and safety for your organization.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_4_1_0=g_navNode_1_4_1.addNode('299','Energy Efficiency',ssUrlPrefix + 'UtilityServices/ForYourBusiness/EnergyExpertise/EnergyEfficiency/index.htm','Description==Get detailed information on the latest high-efficiency technologies, including lighting, boilers, chillers, furnaces, variable frequency drives and more.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_4_1_1=g_navNode_1_4_1.addNode('298','Energy Safety',ssUrlPrefix + 'UtilityServices/ForYourBusiness/EnergyExpertise/EnergySafety/index.htm','Description==Review these guidelines to keep your employees and customers safe around electricity.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_4_1_2=g_navNode_1_4_1.addNode('300','Power Quality',ssUrlPrefix + 'UtilityServices/ForYourBusiness/EnergyExpertise/PowerQuality/index.htm','Description==Learn the causes and consequences of power quality disturbances, and find out how much they could be costing your business.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_4_2=g_navNode_1_4.addNode('348','Customer-owned Generation',ssUrlPrefix + 'UtilityServices/ForYourBusiness/CustomerOwnedGeneration/index.htm','Description==Alliant Energy encourages the development of customer-owned renewable electric generation including solar, wind and methane digesters. Let us help you navigate the rules and regulations governing the interconnection process. ','secondaryUrlVariableField==C10');
g_navNode_1_4_3=g_navNode_1_4.addNode('233','News \x26 Resources',ssUrlPrefix + 'UtilityServices/ForYourBusiness/NewsResources/index.htm','Description==Find quick links to issues in the news and catch up on the energy industry with our informative newsletter.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_5=g_navNode_1.addNode('71','For Contractors \x26 Dealers',ssUrlPrefix + 'UtilityServices/ForContractorsTradeAllies/index.htm','Description==Download electric and gas service manuals, review safety guidelines, find incentive brochures and claims forms, and learn about the Participating Dealer Program.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_5_0=g_navNode_1_5.addNode('330','News \x26 Resources',ssUrlPrefix + 'UtilityServices/ForContractorsTradeAllies/NewsResources/index.htm','Description==Catch up on what\\x27s new with the Energy Efficiency Dealer Program, download the Connections newsletter, sign up for our monthly eConnections Wednesday Webinars and more.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_5_0_0=g_navNode_1_5_0.addNode('386','Dealer Locator',ssUrlPrefix + 'UtilityServices/ForContractorsTradeAllies/NewsResources/DealerLocator/index.htm','AEDealerLocator==TRUE','Description==Use this online database to find energy-smart contractors and dealers in Iowa, Minnesota and Wisconsin.');
g_navNode_1_5_1=g_navNode_1_5.addNode('331','Energy Efficiency Dealer Network Program',ssUrlPrefix + 'UtilityServices/ForContractorsTradeAllies/ParticipatingDealerProgram/index.htm','Description==Take advantage of scholarship reimbursement, trade show assistance, co-op advertising, point-of-purchase materials and more.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_5_2=g_navNode_1_5.addNode('5','Energy Efficiency Programs',ssUrlPrefix + 'UtilityServices/ForContractorsTradeAllies/EnergyEfficiencyPrograms/index.htm','Description==Find program guidelines, download claim forms and order brochures for Alliant Energy\\x27s energy efficiency incentive programs.','dynamicListIsIndex==false','secondaryUrlVariableField==C10');
g_navNode_1_5_3=g_navNode_1_5.addNode('333','Utility Service Information',ssUrlPrefix + 'UtilityServices/ForContractorsTradeAllies/UtilityServiceInformation/index.htm','Description==Look here for electric and gas service manuals, contractor safety guidelines and more.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_6=g_navNode_1.addNode('72','Utility Rates \x26 Facts',ssUrlPrefix + 'UtilityServices/UtilityRatesFacts/index.htm','Description==Review our utility rates and tariffs, take a look at our operational statistics and learn about our generation plan.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_7=g_navNode_1.addNode('73','Storm \x26 Outage Center',ssUrlPrefix + 'UtilityServices/StormOutageCenter/index.htm','Description==View a summary of known electrical outages, find emergency contact numbers, and learn how to keep your family safe when Mother Nature strikes.\\x0a','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_7_0=g_navNode_1_7.addNode('361','Weathering a Storm',ssUrlPrefix + 'UtilityServices/StormOutageCenter/WeatheringaStorm/index.htm','Description==Learn how to keep your family warm, safe and comfortable during a storm or power outage.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_7_1=g_navNode_1_7.addNode('362','Keeping the Lights On',ssUrlPrefix + 'UtilityServices/StormOutageCenter/KeepingtheLightsOn/index.htm','Description==Find out what causes power outages, how service is restored and how Alliant Energy is working to prevent future blackouts.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_1_7_2=g_navNode_1_7.addNode('387','Electrical Outage Summary',ssUrlPrefix + 'UtilityServices/StormOutageCenter/ElectricalOutageSummary/index.htm','Description==View a summary of known electrical outages in Alliant Energy\\x27s service territory.','OutageSummary==TRUE');
g_navNode_2=g_navNode_Root.addNode('47','Non-Utility',ssUrlPrefix + 'Non-Utility/index.htm','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_2_0=g_navNode_2.addNode('377','Industrial Energy Applications',ssUrlPrefix + 'Non-Utility/IndustrialEnergyApplications/index.htm','Description==\x3cb\x3eThe power to keep you connected - IEA\x3c/b\x3e\x3cbr\x3eIEA works with you to supply your on-site power needs. We have developed, owned, operated, built and managed generation systems ranging in sizes from 75 Kilowatts to 300 Megawatts.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_2_0_0=g_navNode_2_0.addNode('212','Success Stories',ssUrlPrefix + 'Non-Utility/IndustrialEnergyApplications/SuccessStories/index.htm','Description==Learn more about how we work with our customers to provide the on-site power security and reliability they need.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_2_1=g_navNode_2.addNode('378','Alliant Energy Transportation',ssUrlPrefix + 'Non-Utility/AlliantEnergyTransportation/index.htm','Description==Supplying freight solutions for river, rail and road across the upper Midwest.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_2_2=g_navNode_2.addNode('368','RMT, Inc.',ssUrlPrefix + 'Non-Utility/RMT/index.htm','Description==Since 1977, RMT, Inc., has been developing solutions to help industrial clients sustain the environment while meeting their business objectives.','secondaryUrlVariableField==C10');
g_navNode_3=g_navNode_Root.addNode('48','Careers',ssUrlPrefix + 'Careers/index.htm','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_3_0=g_navNode_3.addNode('371','Current Job Openings',ssUrlPrefix + 'Careers/CurrentJobOpenings/index.htm','Description==Looking for a career at Alliant Energy? Search for current job openings and apply online.','secondaryUrlVariableField==C10');
g_navNode_3_1=g_navNode_3.addNode('405','College Connection',ssUrlPrefix + 'Careers/CollegeConnection/index.htm','Description==If you\\x27re in college or a recent graduate, Alliant Energy has a lot to offer. From challenging and rewarding paid Internships to our innovative Rotational Engineer Program, you can jump start your career with Alliant Energy. ','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_3_2=g_navNode_3.addNode('270','Skilled Trades',ssUrlPrefix + 'Careers/SkilledTrades/index.htm','Description==Keeping the power going, the lights on and your community safe is an important and a good paying job. Learn more about our career opportunities and how you can get started in the energy industry.','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_3_3=g_navNode_3.addNode('373','Benefits',ssUrlPrefix + 'Careers/Benefits/index.htm','Description==We take pride in the competitive pay and comprehensive benefits we offer to our employees.','secondaryUrlVariableField==C10');
g_navNode_3_4=g_navNode_3.addNode('374','Diversity Commitment',ssUrlPrefix + 'Careers/DiversityCommitment/index.htm','Description==Join a team that welcomes individual talents, ideas and differences.','secondaryUrlVariableField==C10');
g_navNode_3_5=g_navNode_3.addNode('404','Life at Alliant Energy',ssUrlPrefix + 'Careers/LifeatAlliantEnergy/index.htm','Description==Learn about our company, the communities we serve and what it\\x27s like to be part of our team.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_3_6=g_navNode_3.addNode('271','Military Veterans',ssUrlPrefix + 'Careers/MilitaryVeterans/index.htm','Description==Your training and skills may be a great match at Alliant Energy. Find out how your military code lines up with Alliant Energy career choices.','secondaryUrlVariableField==C10');
g_navNode_3_7=g_navNode_3.addNode('372','FAQ',ssUrlPrefix + 'Careers/FAQ/index.htm','Description==Find out how to submit your resume for an open position, and get answers to frequently asked questions.','secondaryUrlVariableField==C10');
g_navNode_4=g_navNode_Root.addNode('49','Investors',ssUrlPrefix + 'Investors/index.htm','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_4_0=g_navNode_4.addNode('416','Company Information',ssUrlPrefix + 'Investors/CompanyInformation/index.htm','Description==Providing utility customers in the Midwest with electric and natural gas services remains our top priority.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_4_0_0=g_navNode_4_0.addNode('323','Corporate Profile',ssUrlPrefix + 'Investors/CompanyInformation/CorporateProfile/index.htm','Description==Find out what drives Alliant Energy and how we do business.','secondaryUrlVariableField==C10');
g_navNode_4_0_1=g_navNode_4_0.addNode('324','Leadership',ssUrlPrefix + 'Investors/CompanyInformation/Leadership/index.htm','Description==Meet our executive officers and board of directors.','secondaryUrlVariableField==C10');
g_navNode_4_0_2=g_navNode_4_0.addNode('325','Company Fact Sheet',ssUrlPrefix + 'Investors/CompanyInformation/CompanyFactSheet/index.htm','Description==Get the facts about our financial performance, utility operations, shareowners and employees.','secondaryUrlVariableField==C10');
g_navNode_4_0_3=g_navNode_4_0.addNode('326','Rates and Regulatory Matters',ssUrlPrefix + 'Investors/CompanyInformation/RatesandRegulatoryMatters/index.htm','Description==View or download recent rate decisions and orders.','secondaryUrlVariableField==C10');
g_navNode_4_0_4=g_navNode_4_0.addNode('327','Frequently Asked Questions',ssUrlPrefix + 'Investors/CompanyInformation/FrequentlyAskedQuestions/index.htm','Description==Find answers to common questions about investing with Alliant Energy Corporation.','secondaryUrlVariableField==C10');
g_navNode_4_0_5=g_navNode_4_0.addNode('328','Information Request Form',ssUrlPrefix + 'Investors/CompanyInformation/InformationRequestForm/index.htm','Description==Use our online form to request more information about Alliant Energy.','secondaryUrlVariableField==C10');
g_navNode_4_1=g_navNode_4.addNode('417','Press Releases \x26 Events',ssUrlPrefix + 'Investors/PressReleasesEvents/index.htm','Description==Read our latest financial announcements, download recent presentations and listen to audio webcasts.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_4_1_0=g_navNode_4_1.addNode('329','Press Releases',ssUrlPrefix + 'Investors/PressReleasesEvents/PressReleases/index.htm','Description==Press releases issued by Alliant Energy Corporation, with archives to 2002.','secondaryUrlVariableField==C10');
g_navNode_4_1_1=g_navNode_4_1.addNode('332','Presentations \x26 Events',ssUrlPrefix + 'Investors/PressReleasesEvents/PresentationsEvents/index.htm','Description==Download recent investor presentations, webcasts, earnings calls and more.','secondaryUrlVariableField==C10');
g_navNode_4_1_2=g_navNode_4_1.addNode('334','Dividend Dates',ssUrlPrefix + 'Investors/PressReleasesEvents/DividendDates/index.htm','Description==View a list of dividend payment dates.','secondaryUrlVariableField==C10');
g_navNode_4_1_3=g_navNode_4_1.addNode('335','E-mail Alerts',ssUrlPrefix + 'Investors/PressReleasesEvents/E-mailAlerts/index.htm','Description==Sign up to receive investor headline stories via e-mail.','secondaryUrlVariableField==C10');
g_navNode_4_2=g_navNode_4.addNode('418','Stock Information',ssUrlPrefix + 'Investors/StockInformation/index.htm','Description==Check our current stock price, review analyst estimates, find historical stock data and more.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_4_2_0=g_navNode_4_2.addNode('336','Stock Quote',ssUrlPrefix + 'Investors/StockInformation/StockQuote/index.htm','Description==Current stock quote, historical stock prices and interactive stock chart.','secondaryUrlVariableField==C10');
g_navNode_4_2_1=g_navNode_4_2.addNode('337','Analyst Estimates',ssUrlPrefix + 'Investors/StockInformation/AnalystEstimates/index.htm','Description==Analyst ratings, EPS trends and EPS revisions.','secondaryUrlVariableField==C10');
g_navNode_4_2_2=g_navNode_4_2.addNode('338','Analyst Coverage',ssUrlPrefix + 'Investors/StockInformation/AnalystCoverage/index.htm','Description==Investment research firms and analysts who follow Alliant Energy.','secondaryUrlVariableField==C10');
g_navNode_4_2_3=g_navNode_4_2.addNode('339','Ownership',ssUrlPrefix + 'Investors/StockInformation/Ownership/index.htm','Description==Overview of Alliant Energy\\x27s shareholders, including rotation, concentration, style and top holders.','secondaryUrlVariableField==C10');
g_navNode_4_3=g_navNode_4.addNode('419','Financials \x26 SEC Filings',ssUrlPrefix + 'Investors/FinancialsSECFilings/index.htm','Description==Review Alliant Energy\\x27s annual reports, proxy statements, 10Ks and other SEC documents.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_4_3_0=g_navNode_4_3.addNode('342','SEC Filings',ssUrlPrefix + 'Investors/FinancialsSECFilings/SECFilings/index.htm','Description==View or download Alliant Energy 10-Ks, 10-Qs, and other SEC filings.','secondaryUrlVariableField==C10');
g_navNode_4_3_1=g_navNode_4_3.addNode('343','Annual Report \x26 Proxy Statement',ssUrlPrefix + 'Investors/FinancialsSECFilings/AnnualReportProxyStatement/index.htm','Description==Read our annual report, financial information and proxy statement and then vote your proxy online.','secondaryUrlVariableField==C10');
g_navNode_4_3_2=g_navNode_4_3.addNode('344','Annual Reports Archive',ssUrlPrefix + 'Investors/FinancialsSECFilings/AnnualReportsArchive/index.htm','Description==Download printer-friendly annual reports, financial information and proxy statements from Alliant Energy, dating back to 1999.','secondaryUrlVariableField==C10');
g_navNode_4_3_3=g_navNode_4_3.addNode('224','Proxy Statements Archive',ssUrlPrefix + 'Investors/FinancialsSECFilings/ProxyStatementsArchive/index.htm','secondaryUrlVariableField==C10');
g_navNode_4_4=g_navNode_4.addNode('420','Shareowner Services',ssUrlPrefix + 'Investors/ShareownerServices/index.htm','Description==Manage your shareowner account online, enroll in our Shareowner Direct Plan, initiate stock transfers and more.','dynamicListIsIndex==TRUE','isFragment==false','secondaryUrlVariableField==C10');
g_navNode_4_5=g_navNode_4.addNode('340','Corporate Governance',ssUrlPrefix + 'Investors/CorporateGovernance/index.htm','Description==Learn about Alliant Energy\\x27s commitment to ethical and legal compliance, and read our by-laws and articles of incorporation.','secondaryUrlVariableField==C10');
g_navNode_4_6=g_navNode_4.addNode('341','Investor Contacts',ssUrlPrefix + 'Investors/InvestorContacts/index.htm','Description==Reach our Investor Relations and Shareowner Services teams by phone, fax, mail or e-mail.','secondaryUrlVariableField==C10');
g_navNode_5=g_navNode_Root.addNode('50','Newsroom',ssUrlPrefix + 'Newsroom/index.htm','Description==Find out the latest happenings at Alliant Energy and learn more about current issues.','contributorOnly==FALSE','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_5_0=g_navNode_5.addNode('460','Recent Press Releases',ssUrlPrefix + 'Newsroom/RecentPressReleases/index.htm','Description==Read the latest news and announcements from Alliant Energy and our subsidiary companies.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_5_1=g_navNode_5.addNode('461','In the News',ssUrlPrefix + 'Newsroom/IntheNews/index.htm','Description==Learn more about Alliant Energy in the headlines, including natural gas prices, utility rate cases, divestitures and more.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_5_1_0=g_navNode_5_1.addNode('512','Utility Rate Cases',ssUrlPrefix + 'Newsroom/IntheNews/UtilityRateCases/index.htm','Description==Read the latest news about Alliant Energy\\x27s utility rate requests, and download official filing documents.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_5_1_0_0=g_navNode_5_1_0.addNode('260','Iowa Electric Rates',ssUrlPrefix + 'Newsroom/IntheNews/UtilityRateCases/IowaElectricRates/index.htm','Description==On March 10, 2010, Interstate Power and Light Company filed a request to increase electric rates with the Iowa Utilities Board.','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_5_1_0_1=g_navNode_5_1_0.addNode('388','Minnesota Electric Rates',ssUrlPrefix + 'Newsroom/IntheNews/UtilityRateCases/MinnesotaElectricRates/index.htm','Description==On May 7, 2010, IPL filed its first electric rate case in Minnesota since 2005.','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_5_1_0_2=g_navNode_5_1_0.addNode('261','Wisconsin Electric Rates',ssUrlPrefix + 'Newsroom/IntheNews/UtilityRateCases/WisconsinRates/index.htm','Description==On April 30, 2010, WPL filed two requests with the PSCW that will impact electric rates and electric retail customers.','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_5_1_0_2_0=g_navNode_5_1_0_2.addNode('396','2011 Electric Rate Case',ssUrlPrefix + 'Newsroom/IntheNews/UtilityRateCases/WisconsinRates/ElectricRateCase/index.htm','Description==View more information on the 2011 Electric Rate Case.','contributorOnly==false','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_5_2=g_navNode_5.addNode('462','Media Kits \x26 Photo Galleries',ssUrlPrefix + 'Newsroom/MediaKitsPhotoGalleries/index.htm','Description==Take advantage of our convenient media kits to help prepare stories for publications.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_6=g_navNode_Root.addNode('51','Community',ssUrlPrefix + 'Community/index.htm','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_6_0=g_navNode_6.addNode('533','Charitable Foundation',ssUrlPrefix + 'Community/CharitableFoundation/index.htm','Description==Since 1998, the Alliant Energy Foundation has contributed more than \x2426 million to worthwhile projects and organizations.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_6_0_0=g_navNode_6_0.addNode('540','What We Do',ssUrlPrefix + 'Community/CharitableFoundation/WhatWeDo/index.htm','Description==The Foundation\\x27s programs reflect our commitment to play an active role in the communities we serve.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_6_0_1=g_navNode_6_0.addNode('541','Apply for a Community Grant',ssUrlPrefix + 'Community/CharitableFoundation/ApplyforaCommunityGrant/index.htm','Description==Review the general guidelines, learn about our areas of focus and find out how to request a grant.','dynamicListIsIndex==false','secondaryUrlVariableField==C10');
g_navNode_6_1=g_navNode_6.addNode('534','Hometown Rewards',ssUrlPrefix + 'Community/HometownRewards/index.htm','Description==Through E-Community partnerships, Alliant Energy-IP\x26L provides incentives to select communities that develop plans and accomplish goals based on energy efficiency and waste reduction efforts.','dynamicListIsIndex==true','secondaryUrlVariableField==C10');
g_navNode_6_2=g_navNode_6.addNode('535','Programs \x26 Partnerships',ssUrlPrefix + 'Community/ProgramsPartnerships/index.htm','Description==Learn more about our tree-planting programs, safety education, speakers bureau, the Alliant Energy Center and more.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_6_3=g_navNode_6.addNode('166','Economic Development',ssUrlPrefix + 'Community/EconomicDevelopment/index.htm','Description==As a leader in economic and community development, Alliant Energy partners with the communities we serve to help them reach their economic potential.','secondaryUrlVariableField==C10');
g_navNode_6_4=g_navNode_6.addNode('205','Employee Volunteers',ssUrlPrefix + 'Community/EmployeeVolunteers/index.htm','Description==Alliant Energy employees and retirees are proud to donate their time and talents to worthy organizations.','secondaryUrlVariableField==C10');
g_navNode_6_5=g_navNode_6.addNode('538','Community News',ssUrlPrefix + 'Community/CommunityNews/index.htm','Description==Read the latest news and announcements highlighting Alliant Energy\\x27s community programs and partnerships.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_7=g_navNode_Root.addNode('52','Environment',ssUrlPrefix + 'Environmental/index.htm','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_7_0=g_navNode_7.addNode('375','Policy \x26 Compliance',ssUrlPrefix + 'Environmental/PolicyCompliance/index.htm','Description==We will manage air, land, water and wildlife resources and conduct our business in an environmentally sensitive and responsible manner.','secondaryUrlVariableField==C10');
g_navNode_7_1=g_navNode_7.addNode('559','Second Nature',ssUrlPrefix + 'Environmental/SecondNature/index.htm','Description==Through the innovative Second Nature program, Alliant Energy\\x27s electric customers can support the growth of renewable energy.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_7_1_0=g_navNode_7_1.addNode('566','For Your Home',ssUrlPrefix + 'Environmental/SecondNature/ForYourHome/index.htm','Description==When your family participates in Second Nature, you\\x27re helping us buy earth-friendly wind, solar and biomass energy used in the program.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_7_1_1=g_navNode_7_1.addNode('567','For Your Business',ssUrlPrefix + 'Environmental/SecondNature/ForYourBusiness/index.htm','Description==Your farm or business can support renewable energy with a monthly contribution to Second Nature.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_7_1_2=g_navNode_7_1.addNode('574','Second Nature News',ssUrlPrefix + 'Environmental/SecondNature/SecondNatureNews/index.htm','Description==Our newsletter offers tips on \"greening\" your home or business, updates on renewable energy worldwide, and Second Nature program information.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_7_2=g_navNode_7.addNode('560','Renewable \x26 Alternative Energy',ssUrlPrefix + 'Environmental/RenewableAlternativeEnergy/index.htm','Description==Alliant Energy\\x27s generation portfolio includes nearly 600 megawatts from renewable and alternative energy sources.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_7_3=g_navNode_7.addNode('561','Pollution Prevention',ssUrlPrefix + 'Environmental/PollutionPrevention/index.htm','Description==We\\x27re working to minimize our environmental impact by improving our operational performance and investing in developing technologies.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_7_4=g_navNode_7.addNode('562','Land \x26 Wildlife',ssUrlPrefix + 'Environmental/LandWildlife/index.htm','Description==Protecting natural resources through tree planting programs, manufactured gas plant site restoration and more.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_7_5=g_navNode_7.addNode('563','Energy Conservation',ssUrlPrefix + 'Environmental/EnergyConservation/index.htm','Description==Alliant Energy supports and participates in a variety of efficiency initiatives to assist our customers in reducing energy use.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_7_6=g_navNode_7.addNode('564','Research \x26 Education',ssUrlPrefix + 'Environmental/ResearchEducation/index.htm','Description==We believe investing in new technologies and educating the next generation are critical in managing environment issues in the future.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_7_7=g_navNode_7.addNode('565','Environmental News',ssUrlPrefix + 'Environmental/EnvironmentalNews/index.htm','Description==Read the latest news and announcements highlighting Alliant Energy\\x27s environmental initiatives.','dynamicListIsIndex==TRUE','secondaryUrlVariableField==C10');
g_navNode_8=g_navNode_Root.addNode('181','Contact Us',ssUrlPrefix + 'ContactUs/index.htm','secondaryUrlVariableField==C10');
