window.onload=randomAd;


var ads=[];
//smoke detectors
ads[0]="<a href=\"http://www.usfa.dhs.gov/citizens/all_citizens/home_fire_prev/alarms/index.shtm\" style=\"border-width: 0\"><img src=\"http://www.usfa.dhs.gov/_images/psa/smokealarms2.jpg\" alt=\"Smoke Alarms - What You Need to Know\" /></a>";
//seniors
//ads[1]="<a href=\"http://www.usfa.dhs.gov/citizens/older/index.shtm\" style=\"border-width: 0\"><img src=\"http://www.usfa.dhs.gov/_images/psa/older_adults.jpg\" alt=\"Fire Safety Lasts a Lifetime\" /></a>";
//smoking
ads[2]='<a href="http://www.usfa.dhs.gov/campaigns/smoking/index.shtm" style="border-width: 0"> <img src="http://www.usfa.dhs.gov/_images/psa/smoking.jpg" alt="Smoking & Home Fires" /> </a>';
//fireplaces
ads[3]='<a href="http://www.usfa.dhs.gov/citizens/all_citizens/home_fire_prev/heating/fireplace.shtm" style="border-width: 0"> <img src="http://www.usfa.dhs.gov/_images/psa/fireplace.jpg" alt="Fireplaces and Home Safety" /> </a>';
//wildfire
//ads[4]='<a href="http://www.usfa.dhs.gov/citizens/all_citizens/home_fire_prev/wildfire/index.shtm" style="border-width: 0"> <img src="http://www.usfa.dhs.gov/_images/psa/wildfire.jpg" alt="Wildfire... Are You Prepared?" /> </a>';
//home sprinklers
ads[5]='<a href="http://www.usfa.dhs.gov/citizens/all_citizens/home_fire_prev/sprinklers/index.shtm" style="border-width: 0"> <img src="http://www.usfa.dhs.gov/_images/psa/sprinklers.jpg" alt="Home Fire Sprinklers" /> </a>';
//cooking
ads[6]='<a href="http://www.usfa.dhs.gov/citizens/all_citizens/home_fire_prev/cooking.shtm" style="border-width: 0"> <img src="http://www.usfa.dhs.gov/_images/psa/cooking.jpg" alt="Cooking Fire Safety Tips for the Holiday Season" /> </a>';
//holidays
ads[7]='<a href="/citizens/all_citizens/home_fire_prev/holiday-seasonal/holiday.shtm" style="border-width: 0"> <img src="http://www.usfa.dhs.gov/_images/psa/holiday.jpg" alt="Holiday Fire Safety" /> </a>';
//winter storm
ads[8]='<a href="http://www.usfa.dhs.gov/citizens/all_citizens/home_fire_prev/holiday-seasonal/winter_storms.shtm" style="border-width: 0"> <img src="http://www.usfa.dhs.gov/_images/psa/winterstorm.jpg" alt="Winter Storm Fire Safety" /> </a>';
//home heating
ads[9]='<a href="http://www.usfa.dhs.gov/citizens/all_citizens/home_fire_prev/heating/hotspot.shtm" style="border-width: 0"> <img src="http://www.usfa.dhs.gov/_images/psa/homeheating.jpg" alt="Home Heating Fire Safety - Check your hotspots!" /> </a>';


function randomAd() {
	var x=Math.floor(Math.random()*ads.length)
	document.getElementById("ad1").innerHTML=ads[x];
	
	
	
	
	}
	
function drop(show) {
	document.getElementById(show).style.display="block";
	};
	
function end(hide) {
	document.getElementById(hide).style.display="none";
	};

