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: Who is Vulnerable? <span class="timecode">[5:55]</span>';
heart_info_p[1] = 'Jane Pauley talks about her bipolar diagnosis and introduces the panel experts. Is everyone vulnerable to depression?';

heart_info_h[2] = 'Chapter 2: A Medical Disorder <span class="timecode">[7:13]</span>';
heart_info_p[2] = 'What are the biological elements of depression?  How do you recognize and treat depression in children?';

heart_info_h[3] = 'Chapter 3: Drugs, Therapy, and Giving Support <span class="timecode">[7:21]</span>';
heart_info_p[3] = 'What are the risks of going off drugs? Does talk therapy alone work?  Helping others can help lighten the load of depression.';

heart_info_h[4] = 'Chapter 4: Getting Support <span class="timecode">[6:00]</span>';
heart_info_p[4] = 'Support groups can help those with depression, and raise public awareness.  Often, symptoms in elders go untreated.';


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