<!--
var picture = "";
var text = "";

var pict1 = "rotatepict/mosquito_control_equipment.jpg";
var pict2 = "rotatepict/loading_helicopter.jpg";
var pict3 = "rotatepict/tammy1.jpg";
var pict4 = "rotatepict/Lycoming_county_sprayer.jpg";
var pict5 = "rotatepict/Chester_egg_rafts.jpg";
var pict6 = "rotatepict/spray_route_briefing.jpg";
var pict7 = "rotatepict/ChesterATV.jpg";
var pict8 = "rotatepict/FourDEPTrucksWithULV.JPG";
var pict9 = "rotatepict/LabIdentification.JPG";

var text1 = "A variety of mosquito control equipment and supplies used by the WNV program to control larval and adult mosquitoes.";
var text2 = "DEP contractor loading up to conduct emergency aerial larviciding around the City of Wilkes-Barre. Nearly 300 acres of flooded areas were larvicided to support Luzerne County as a result of extensive flooding in and around the city.";
var text3 = "Tammy Nicholas inspects a pile of discarded tiles for mosquito larvae.";
var text4 = "Pro-Mist electric ULV sprayer used to control adult mosquitoes to control WNV.";
var text5 = "Culex egg rafts found in Chester County.  The county conducted a barrier spray as a result high mosquito numbers.";
var text6 = "Bryan Diehl briefing the spray applicators on the routes they will be driving that evening.  The spray was conducted to control an outbreak of WNV in the City of Pittsburgh.  Also pictured are: Andrew Kyle, DEP Chief of Vector Management and Ed Farrell, DEP Regional WNV coordinator.";
var text7 = "Chester County West Nile Virus Control staff using an all terrain vehicle to access hard to reach areas.  In the past these areas were inaccessible and had to be treated from shore.  This resulted in a large amount of adult mosquitoes coming off and then treated with adulticides.  The county can now treat these areas before larvae mature into adults.";
var text8 = "The Department\'s four trucks mounted with Ultra-Low Volume (ULV) systems.  These trucks are used to treat adult mosquitoes in areas with high numbers of mosquitoes capable of tramsitting the West Nile Virus.";
var text9 = "Water Pollution Biologist Bryn Witmier hard at work identifying mosquitoes that have been sent in from one of Pennsylvania\'s sixty-seven county programs.  The DEP lab typically identifies approximately one million mosquitoes per summer.";

var randomize = Math.round(Math.random()*9);
//randomize = 9;
if(randomize == 1 || randomize==0){
	picture = pict1;
	text = text1;
}else if (randomize == 2){
	picture = pict2;
	text = text2;
}else if (randomize == 3){
	picture = pict3;
	text = text3;
}else if (randomize == 4){
	picture = pict4;
	text = text4;
}else if (randomize == 5){
	picture = pict5;
	text = text5;
}else if (randomize == 6){
	picture = pict6;
	text = text6;
}else if (randomize == 7){
	picture = pict7;
	text = text7;
}else if (randomize == 8){
	picture = pict8;
	text = text8;
}else if (randomize == 9){
	picture = pict9;
	text = text9;
}

//-->