
function displayPix() {

	var flower = new Array();
	flower[0] = "AutmnGold";
	flower[1] = "AutumnLeaves";
	flower[2] = "BedFlowersRed";
	flower[3] = "BeeWorking";
	flower[4] = "BlueFlower";
	flower[5] = "BottleBrushRed";
	flower[6] = "ButterflyOrange";
	flower[7] = "Bzzz";
	flower[8] = "ChrysanthemumWhite";
	flower[9] = "ColorfulLeaves";
	flower[10] = "CrocusSnowBlue";
	flower[11] = "Dahlia";
	flower[12] = "DaisyBee";
	flower[13] = "DaisyLargeWhite";
	flower[14] = "Daylilly";
	flower[15] = "DutchTulip";
	flower[16] = "Echinacea";
	flower[17] = "FallColors";
	flower[18] = "FallenLeaves";
	flower[19] = "FieldofFlowers";
	flower[20] = "FlowerRoad";
	flower[21] = "Fuschia";
	flower[22] = "GentianBlue";
	flower[23] = "GerberaRed";
	flower[24] = "GreenLeaves";
	flower[25] = "LilacBeauty";
	flower[26] = "LilyHeart";
	flower[27] = "Lotus";
	flower[28] = "MagnoliaSky";
	flower[29] = "MapleLeaf";
	flower[30] = "NaturalChristmasLights";
	flower[31] = "OrangePurple";
	flower[32] = "Orchid";
	flower[33] = "PinkFlowers";
	flower[34] = "PurplePetunia";
	flower[35] = "RedLeaves";
	flower[36] = "RockersPorch";
	flower[37] = "RoseDew";
	flower[38] = "Sunflower";
	flower[39] = "Teatime";
	flower[40] = "TropicalRed";
	flower[41] = "TulipInterior";
	flower[42] = "Violet";
	flower[43] = "WaterlillyPurple";
	flower[44] = "WaterLily";
	flower[45] = "WeepingLadysMantle";
	flower[46] = "Wildflowers";
	flower[47] = "YellowBuds";


	var rand = Math.floor(Math.random() * flower.length);

	
	document.write("<img style='margin:12px 0 20px 0' alt='' src='images/soulfood/" + flower[rand] + "72dpi.jpg'><br/>");
}

displayPix();

