var theImages = new Array()
theImages[0] = '<span class="sideHeader">Safety Tip # 1</span><br>GFCI and AFCI breakers should be tested every month and after a fire or electrical storm.'
theImages[1] = '<span class="sideHeader">Safety Tip # 2</span><br>Make sure all electrical equipment, lights, toys, appliances, etc,  bear the seal of a nationally recognized certification agency such as CSA, Intertek Testing, ULC, etc...'
theImages[2] = '<span class="sideHeader">Safety Tip # 3</span><br>GFCI&#8217;s are products designed to prevent serious injury or death from electrical shock by detecting ground faults at very low levels.'
theImages[3] = '<span class="sideHeader">Safety Tip # 4</span><br>Electrical accidents kill approx. 25 industrial workers every year in Canada. Be cautious when working around electrical equipment.'
theImages[4] = '<span class="sideHeader">Safety Tip # 5</span><br>Check and test smoke alarms on a monthly basis and replace as required.'
theImages[5] = '<span class="sideHeader">Safety Tip # 6</span><br>Stay back at least 10 meteres (33 feet) from any fallen power lines or exposed cable.'
theImages[6] = '<span class="sideHeader">Safety Tip # 7</span><br>When using equipment in the vicinity of power lines, always maintain the limits of approach: (3-7 meteres or 10-20 feet depending on the voltage).'
theImages[7] = '<span class="sideHeader">Safety Tip # 8</span><br>Do not leave plugged in appliances where they may fall into or contact water. If a plugged in appliance falls into water, never reach in to pull it out, even if it is turned off.'
theImages[8] = '<span class="sideHeader">Safety Tip # 9</span><br>It takes only 10-40 milli-amps to seriously injure or even kill a person.'
theImages[9] = '<span class="sideHeader">Safety Tip # 10</span><br>Trees and/or branches too close to power lines can be dangerous and cause major power outages.'
var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){

document.write(theImages[whichImage]);
}
