// JavaScript Document

  	var deal = new Array;
	deal[0] = "<p><strong>Cooling System Checkup</strong><br /><img src=../images/layout/energyTipsPic1.png width=82 height=55 />Get a yearly checkup for your cooling system too because a properly maintained system can save between 1% and 13%.</p>";
	deal[1] = "<p><strong>Generator Safety</strong><br />For members who need emergency power during an outage, portable generators can be a safe and convenient way to provide electricity if used correctly. Failure to properly use a generator can result in severe injury or death. A safety checklist is available under Energy Information.</p>";
	deal[2] = "<p><strong>Caulking</strong><br />Caulk windows, doors, baseboards, exhaust fans, dryer vents, and other places where pipes and wires enter the house to save 1% to 4%.</p>";
	deal[3] = "<p><strong>Raising Your Thermostat</strong><br />Experiment with raising your usual thermostat setting in summer because every degree raised will save you between 5% to 10% of your bill.</p>";
	deal[4] = "<p><strong>Drying Clothes</strong><br />Dry clothes on a clothesline if you want to save between 2% and 4% on your yearly bill.</p>";

	var rand = Math.round(Math.random() * (deal.length-1));
	var rand2 = Math.round(Math.random() * (deal.length-1));
document.write("<div id=aiws_energyTips><div class=header><h3 class=width49>ENERGY <span class=yellowText>TIP$</span></h3><a href=../energyTips.aspx>more tips</a></div>" + deal[rand] + "<\/div>");


