<!--
var picture = "";
var text = "";

var pict1 = "rotatepict/mosquito_control_equipment.jpg";
var pict2 = "rotatepict/PhiladelphiaSludgePlantControl.jpg";
var pict3 = "rotatepict/tammy1.jpg";
var pict4 = "rotatepict/Lycoming_county_sprayer.jpg";
var pict5 = "rotatepict/Chester_egg_rafts.jpg";
var pict6 = "rotatepict/ChesterATV.jpg";
var pict7 = "rotatepict/FourDEPTrucksWithULV.JPG";
var pict8 = "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 = "A helicopter being loaded with bacterial larvicide to control mosquitoes at the Philadelphia sludge plant.";
var text3 = "Tammy Nicholas inspects a pile of discarded tires 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.  Each raft contains 200-300 mosquito larvae.  Culex mosquitoes are the #1 vector of West Nile Virus in Pennsylvania.";
var text6 = "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 text7 = "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 text8 = "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()*8);
//randomize = 8;
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;
}else if (randomize == 10){
	picture = pict10;
	text = text10;
}

//-->
