document.write('<div id="roll-video-info" style="display: none;"><h3 id="vn-roll-h3"></h3><p id="vn-roll-p" class="player_blurb"></p></div>');

var heart_info_h = new Array();
var heart_info_p = new Array();

heart_info_h[1] = 'Chapter 1: Introduction  <span class="timecode">[4:06]</span>';
heart_info_p[1] = 'Six years after her husband Larry\'s death from lung cancer, Linda asks: \"Why does anyone still die of cancer?\"';

heart_info_h[2] = 'Chapter 2: Cancer 9, Us 1  <span class="timecode">[7:29]</span>';
heart_info_p[2] = 'Linda returns to the hospitals where Larry received care to learn what has changed. Cancer is hundreds of different diseases.';

heart_info_h[3] = 'Chapter 3: Hope for the Best  <span class="timecode">[5:59]</span>';
heart_info_p[3] = 'The latest news about Jamie\'s pancreatic cancer isn\'t good. Her doctor imagines what he would do in her situation. ';

heart_info_h[4] = 'Chapter 4: The Three Oldest Methods  <span class="timecode">[10:46]</span>';
heart_info_p[4] = 'Jamie discusses her prognosis with family. Linda recalls Larry\'s three options: surgery, radiation and chemotherapy. ';

heart_info_h[5] = 'Chapter 5: The Holy Grail of Treatment  <span class="timecode">[7:08]</span>';
heart_info_p[5] = 'Vinay, a medical student with leukemia, needs a bone marrow donor. Doctors seek a drug that destroys only cancer cells. ';

heart_info_h[6] = 'Chapter 6: How Complicated It Is   <span class="timecode">[6:11]</span>';
heart_info_p[6] = 'Developing a successful drug takes many years. Several have helped Jennifer, who manages her cancer as a chronic condition. ';

heart_info_h[7] = 'Chapter 7: Clinical Trials   <span class="timecode">[7:13]</span>';
heart_info_p[7] = 'Jamie gets a second opinion about treatment, and talks with her father and brother.  Should she join a clinical trial? ';

heart_info_h[8] = 'Chapter 8: The Question of Prevention   <span class="timecode">[7:59]</span>';
heart_info_p[8] = 'What role do environmental factors play? Can diet and lifestyle reduce the risks of cancer? Do cancer screenings always help?';

heart_info_h[9] = 'Chapter 9: The Luck of the Draw   <span class="timecode">[4:42]</span>';
heart_info_p[9] = 'Some preventive measures can make a huge difference. The impact of others is more complex. There are no guarantees.';

heart_info_h[10] = 'Chapter 10: The Cost of Surviving   <span class="timecode">[10:01]</span>';
heart_info_p[10] = 'Jamie joins a phase 1 clinical trial.  Linda and Larry continue to film his cancer story, even as his heath gets worse.';

heart_info_h[11] = 'Chapter 11: When Is the Fight Over?   <span class="timecode">[9:52]</span>';
heart_info_p[11] = 'Vinay gets his marrow transplant. Jamie leaves the clinical trial. How doctors help families when the end is inevitable.';

heart_info_h[12] = 'Chapter 12: Setting New Expectations   <span class="timecode">[3:45]</span>';
heart_info_p[12] = 'Progress against cancer has been a succession of small victories. Those who die are just as strong as the \"survivors.\"';

function video_roll_show(vin)
{	
	document.getElementById('vn-roll-h3').innerHTML = heart_info_h[vin];
	document.getElementById('vn-roll-p').innerHTML = heart_info_p[vin];
	document.getElementById('default-video-info').style.display = "none";
	document.getElementById('default-video-info').style.display = "none";
	document.getElementById('roll-video-info').style.display = "block";
}

function video_roll_hide()
{
	document.getElementById('roll-video-info').style.display = "none";
	document.getElementById('default-video-info').style.display = "block";
}