var streamName = [                       
'Amity Creek', //0                         
'Brewery Creek',                        
'Buckingham Creek',                     
'Chester Creek',                        
'Clarkhouse Creek',                     
'Coffee Creek',  //5                       
'Gary Street Creek',                    
'Greys Creek',                          
'Keene Creek',                          
'Kingsbury Creek',                      
'Knowlton Creek', //10                      
'Lester River',                         
'Merritt Creek',                        
'Miller Creek',                         
'Mission Creek',                        
'Morgan Park Creek',  //15                  
'Oregon Creek',                         
'Sargent Creek',                        
'Stewart Creek',                        
'Tischer Creek',                        
'US Steel Creek',  //20                     
'32nd Ave West Creek',                  
'34th Ave East Creek',                  
'37th Ave East Creek',                  
'38th Ave East Creek',                  
'40th Ave East Creek',                  
'41st Ave West Creek',                  
'43rd Ave East Creek',                  
'47th Ave East Creek',                  
'50th Ave East Creek',                  
'58th Ave East Creek', //30                 
'Beaver River',                          
'Brule River',              
'Caribou River',            
'Cascade River',            
'East Split Rock River',    
'French River',             
'Gooseberry River',         
'Knife River',              
'Lester River',             
'Poplar River',  //40           
'Split Rock River',         
'Sucker River',             
'Talmadge River',
'Baptism River', //44
'Encampment River', //45
'Simian Creek', //46
'St. Louis River', //47
//added 3/21/11:
'Bowser/Heard Creeks', //48
'Gogebic/Lenroot/84th/85th Creeks', //49
'Steelton', //50
'Sugarloaf Creek', //51
'44th/49th Ave W. Creeks', //52
'62nd/68th Ave W. Creeks', //53
'Mud Lake', //54
];

var streamImg = [
'../images/graphs/amityuse.gif', //0
'../images/graphs/breweryuse.gif',
'../images/graphs/buckinghamuse.gif',
'../images/graphs/chesteruse.gif',
'../images/graphs/clarkhouseuse.gif',
'../images/graphs/coffeeuse.gif',
'../images/graphs/garyuse.gif',
'../images/graphs/greysuse.gif',
'../images/graphs/keeneuse.gif',
'../images/graphs/kingsburyuse.gif',
'../images/graphs/knowltonuse.gif', //10
'../images/graphs/lesteruse.gif',
'../images/graphs/merrittuse.gif',
'../images/graphs/milleruse.gif',
'../images/graphs/missionuse.gif',
'../images/graphs/morganuse.gif',
'../images/graphs/oregonuse.gif',
'../images/graphs/sargentuse.gif',
'../images/graphs/stewartuse.gif',
'../images/graphs/tischeruse.gif',
'../images/graphs/ussteeluse.gif', //20
'../images/graphs/west32use.gif',
'../images/graphs/east34use.gif',
'../images/graphs/east37use.gif',
'../images/graphs/east38use.gif',
'../images/graphs/east40use.gif',
'../images/graphs/west41use.gif',
'../images/graphs/east43use.gif',
'../images/graphs/east47use.gif',
'../images/graphs/east50use.gif',
'../images/graphs/east58use.gif', //30
'../../northshore/images/graphs/beaveruse.gif',
'../../northshore/images/graphs/bruleuse.gif',
'../../northshore/images/graphs/caribou_use.gif',
'../../northshore/images/graphs/cascade_use.gif',
'../../northshore/images/graphs/eSplitRock_use.gif',
'../../northshore/images/graphs/frenchuse.gif',
'../../northshore/images/graphs/gooseberry_use.gif',
'../../northshore/images/graphs/knifeuse.gif',
'../../northshore/images/graphs/lesteruse.gif',
'../../northshore/images/graphs/poplaruse.gif', //40
'../../northshore/images/graphs/splitRock_use.gif',
'../../northshore/images/graphs/suckeruse.gif',
'../../northshore/images/graphs/talmadgeuse.gif',
'../../northshore/images/graphs/baptismuse.gif', //44
'../../northshore/images/graphs/encampmentuse.gif',
'../images/graphs/simianuse.gif', //46
'../images/graphs/stlouisuse.gif', //47
//added 3/21/11:
'../images/graphs/bowserHeardUse.gif', //48
'../images/graphs/gogebicLenroot-84-85Use.gif', //49
'../images/graphs/steeltonUse.gif', //50
'../images/graphs/sugarloafUse.gif', //51
'../images/graphs/west44-49Use.gif', //52
'../images/graphs/west62-68Use.gif', //53
'../images/graphs/mudlakeUse.gif', //54
];


function getImg(strmNo) {
	var line1 = '<p align="center" class="headline">'+streamName[strmNo]+' Watershed Land Use</p>';
	var line2 = '<p align="center"><img src="'+streamImg[strmNo]+'" class="photo" /></p>';			
	document.getElementById("graph").innerHTML = line1 + line2;
}


