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: Out of Nowhere  <span class="timecode">[7:00]</span>';
heart_info_p[1] = 'Fit and apparently healthy, the father of a young family is hit hard by heart disease. ';

heart_info_h[2] = 'Chapter 2: Scary Statistics  <span class="timecode">[14:17]</span>';
heart_info_p[2] = 'Heart disease now kills half of all Americans. How did we get here? One town in Massachusetts yields many clues. ';

heart_info_h[3] = 'Chapter 3: When Hearts Fail Slowly  <span class="timecode">[6:55]</span>';
heart_info_p[3] = 'The disease can tighten its grip undetected for years, but once congestive heart failure sets in, the body slowly suffocates. ';

heart_info_h[4] = 'Chapter 4: The Keys to Prevention  <span class="timecode">[7:31]</span>';
heart_info_p[4] = 'The heart plays a central role in the human imagination, but it took data and analysis to expose the role of blood pressure. ';

heart_info_h[5] = 'Chapter 5: Heart Disease in Women  <span class="timecode">[8:54]</span>';
heart_info_p[5] = 'For women the symptoms of heart disease are often very different, or nonexistent, prior to a catastrophic event. ';

heart_info_h[6] = 'Chapter 6: Cholesterol\'s Secrets   <span class="timecode">[8:11]</span>';
heart_info_p[6] = 'A high level of LDL cholesterol is linked with heart disease. Why? The quest for answers unlocks profound insights. ';

heart_info_h[7] = 'Chapter 7: Inherited Risk   <span class="timecode">[7:28]</span>';
heart_info_p[7] = 'A family afflicted with a genetic disorder that accelerates heart disease sheds further light on cholesterol\'s role. ';

heart_info_h[8] = 'Chapter 8: Within the Walls   <span class="timecode">[12:43]</span>';
heart_info_p[8] = 'Repeated high-tech cardiovascular surgery cannot arrest the progression of heart disease. A new technology reveals why. ';

heart_info_h[9] = 'Chapter 9: Root Causes Revealed   <span class="timecode">[5:26]</span>';
heart_info_p[9] = 'The systematic nature of the disease becomes clear, and with it, the role of the immune system in causing heart attacks. ';

heart_info_h[10] = 'Chapter 10: The Challenge Ahead   <span class="timecode">[4:38]</span>';
heart_info_p[10] = 'The fundamental sources of heart disease are now known, but for most, behavior change is the real solution. Will we?';

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";
}