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 larry_info_h = new Array();
var larry_info_p = new Array();

larry_info_h[1] = 'Chapter 1 - Why Don\'t We Pay Attention <span class="timecode">[4:32]</span>';
larry_info_p[1] = 'Larry King talks about his own experience with heart disease, introduces the panel, and discusses risk factors';

larry_info_h[2] = 'Chapter 2 - What Women Need to Know <span class="timecode">[2:36]</span>';
larry_info_p[2] = 'The panel explains how heart disease often produces different symptoms in women than men.';

larry_info_h[3] = 'Chapter 3 - Sex, Heart Attacks & Stress <span class="timecode">[5:11]</span>';
larry_info_p[3] = 'Is sex after a heart attack dangerous? Are sexual problems an early sign of heart disease? Is stress always bad for the heart? ';

larry_info_h[4] = 'Chapter 4 - The Golden Hour <span class="timecode">[3:51]</span>';
larry_info_p[4] = 'Why you should call 911 immediately at the onset of any symptoms. Can aspirin prevent heart attacks?';

larry_info_h[5] = 'Chapter 5 - Heart Disease & Obesity <span class="timecode">[3:31]</span>';
larry_info_p[5] = 'The role obesity plays. Know your waist-hip ratio. Good ideas for better eating. Why dental care matters. ';

larry_info_h[6] = 'Chapter 6 - Medication, Exercise and Disparities <span class="timecode">[5:36]</span>';
larry_info_p[6] = 'The drugs work, but lifestyle change is the key. Race and economics do play a role. What Bill Clinton learned.';

larry_info_h[7] = 'Chapter 7 - Doctor Patient Relations <span class="timecode">[8:07]</span>';
larry_info_p[7] = 'How to partner with your doctor. Strength and weaknesses in our health care system. Stents vs. bypass. New medications.';


function video_roll_show(vin)
{	
	document.getElementById('vn-roll-h3').innerHTML = larry_info_h[vin];
	document.getElementById('vn-roll-p').innerHTML = larry_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";
}