// JavaScript Document Tomorrow\'s (referred to as storyText below) // 4. a link if you'd like one (referred to as storyLink below) // STORIES = [ ['slideshow/images3/beavers_fight.jpg', 'Fighting Beavers', 'As explained by Dr. Hongjun Chu, this female beaver is defending her nest from an unknown male invader. She slaps and claws at his face letting out small distressing squeaks as she struggles to stay afloat and fight at the same time.', '1', '13'], ['slideshow/images3/beaver.jpg', 'Rare Daylight Appearance', 'Beavers are nocturnal mammals so a scene like this is very rare. The male has come up temporarily to eat during the day, perhaps just for a few minutes. Once I spot him, I run along the bank to set up the tripod and camera before he disappears again for many more hours.', '2', '0'], ['slideshow/images3/dr_chu.jpg', 'Dr. Hongjun Chu', 'Dr. Chu is passionate about the beaver, perhaps the most passionate conservationist I have met in China. With his camouflage net pulled up, he braves the hordes of mosquitoes in search of these enigmatic creatures.', '3', '1'], ['slideshow/images3/arjin_mountain.jpg', 'Arjin Mountain', 'We return to the Arjin reserve only to discover that poachers and miners are running rampant inside China\'s \"last wildlife wilderness.\" At more than 16,000 feet, Arjin can be a treacherous place. Only certain animals accustomed to the harsh conditions can survive.', '4', '2'], ['slideshow/images3/wong_how_man.jpg', 'Wong How Man', 'Wong How Man, the head of the China Exploration and Research Society (CERS), who I dubbed the \"Steve Zissou\" of our expedition group, talks about discovering the Tibetan antelope calving ground in 1998. \"It should have been a joyous occasion discovering the calving ground for the first time for science, but instead we were filled with grief as the poachers had beaten us here.\"', '5', '3'], ['slideshow/images3/brent_howman.jpg', 'How Man with Brent Huffman', 'Both of us are careful while filming not to get too close to the wildlife. I soon learned that it takes tremendous patience and resolve to film animals in the wild.', '6', '4'], ['slideshow/images3/tent_city.jpg', 'Tent City', 'During our expedition, this is home. Notice the little black dot in the right hand corner. That\'s someone looking for a private place to go to the bathroom. There are no trees at Arjin, so a \"private place\" could be miles away.', '7', '5'], ['slideshow/images3/compression.jpg', 'Compression Chamber', 'Luckily, when we were traveling at high altitudes, Xiaoli and I didn\'t need to use this portable compression chamber. We never suffered from anything worse than a headache. But others on the expedition to Arjin were not so lucky. Many lined up to use the chamber -- young and old. Some had symptoms so severe they couldn\'t walk and had to be carried.', '8', '6'], ['slideshow/images3/baby_antelope.jpg', 'Tibetan Antelope', 'The mothers often run away from their young hoping that they will draw away predators. We spotted many adults on the horizon looking at us helplessly.', '9', '7'], ['slideshow/images3/baby_antelope_sitting.jpg', 'Blending into the Landscape', 'Believe it or not, we almost walked right past this newborn, just a few days old. The calf knows he has been spotted, and quickly bolts off in search of his mother.', '10', '8'], ['slideshow/images3/endangered_furs.jpg', 'The Fur Trade', 'Even though there are laws against trading in endangered animal furs, there is always a way around them. Enforcing the law in China is very difficult, especially in areas where there is a lot of money to be made. These fur pelts were on sale openly inside a bazaar in Urumqi, along with shawls made from the animal\'s fur.', '11', '9'], ['slideshow/images3/workers_coalmine.jpg', 'Industry Meets Conservation', 'Mining inside the Arjin reserve has wreaked havoc on the antelopes\' habitat, dumping toxic pollution and garbage into the area, and driving enormous trucks and SUVs straight through the calving areas.', '12', '10'], ['slideshow/images3/Women-in-Urumuqi.jpg', 'Muslim Woman', 'Most Uighur women wear scarves or shawls to cover their faces when in public. Han Chinese have suppressed the Uighurs, making them mistrustful of all outsiders.', '13', '11'], ['slideshow/images3/Mosque.jpg', 'Urumqi Bazaar', 'This is the entrance to the largest bazaar in the city of Urumqi. You can find almost anything for sale here, including plenty of illegal merchandise.', '0', '12'] ]; function switchStory(story) { document.getElementById("storyImage").src = STORIES[story][0]; document.getElementById("storyTitle").innerHTML = STORIES[story][1]; document.getElementById("storyText").innerHTML = STORIES[story][2]; //document.getElementById("storyQuote").innerHTML = STORIES[story][3]; document.getElementById("storyLink").innerHTML = "\"Next\""; document.getElementById("storyLinkb").innerHTML = "\"Back\""; return false; } // -->