var d=new Date();

var div = document.getElementById('ElectricalTip');
var tip;

if (d.getMonth() === 0)
{
	tip='Electrical Safety Tip: Use extension cords only when necessary and only on a temporary basis.';
}
if (d.getMonth() === 1)
{
	tip='Electrical Safety Tip: Make sure cords do not dangle from the counter or table tops where they can be pulled down or tripped over.';
}
if (d.getMonth() === 2)
{
	tip='Electrical Safety Tip: with cords lacking safety closures, cover any unused outlets with electrical tape or with plastic caps to prevent the chance of a child making Contact with the live circuit.';
}
if (d.getMonth() === 3)
{
	tip='Electrical Safety Tip: Insert plugs fully so that no part of the prongs are exposed when the extension cord is in use.';
}
if (d.getMonth() === 4)
{
	tip='Electrical Safety Tip: When disconnecting cords, pull the plug rather than the cord itself.';	
}
if (d.getMonth() === 5)
{
	tip='Electrical Safety Tip: Teach children not to play with plugs and outlets.';
}
if (d.getMonth() === 6)
{
	tip='Electrical Safety Tip: Use only three-wire extension cords for appliances with three-prong plugs. Never remove the third (round or U-shaped) prong, which is a safety feature designed to reduce the risk of shock and electrocution.';
}
if (d.getMonth() === 7)
{
	tip='Electrical Safety Tip: Check the plug and the body of the extension cord while the cord is in use. Noticeable warming of these plastic parts is expected when cords are being used at their maximum rating, however, if the cord feels hot or if there is a softening of the plastic, this is a warning that the plug wires or connections are failing and that the extension cord should be discarded and replaced.';
}
if (d.getMonth() === 8)
{
	tip='Electrical Safety Tip: Never use an extension cord while it is coiled or looped. Never cover any part of an extension cord with newspapers, clothing, rugs, or any objects while the cord is in use. Never place an extension cord where it is likely to be damaged by heavy furniture or foot traffic.';
}
if (d.getMonth() === 9)
{
	tip='Electrical Safety Tip: Don\'t use staples or nails to attach extension cords to a baseboard or to another surface. This could damage the cord and present a shock or fire hazard.';
}
if (d.getMonth() === 10)
{
	tip='Electrical Safety Tip: Don\'t overload extension cords by plugging in appliances that draw a total of more watts than the rating of the cord.';
}
if (d.getMonth() === 11)
{
	tip='Electrical Safety Tip: When using outdoor tools and appliances, use only extension cords labeled for outdoor use.';
}

div.innerHTML = tip;




















