var timings = [28, 76, 131, 158, 211, 275, 296, 325, 360, 394];

var markerNavHTML = '<h2>People</h2>' +
					'<p class="prev nav ir">Up<span></span></p>' +
					'<div id="markers">' +
						'<div class="items">' +
							'<div id="marker1">' +
								'<img src="/www.fightcervicalcancer.org.uk/images/dvd-thumbs/marker-1.jpg" alt="DVD Marker 1"/>' +
								'<p>What is cervical cancer?</p>' +
							'</div>' +
							'<div id="marker2">' +
								'<img src="/www.fightcervicalcancer.org.uk/images/dvd-thumbs/marker-2.jpg" alt="DVD Marker 2"/>' +
								'<p>What is the Human Papilloma Virus?</p>' +
							'</div>' +
							'<div id="marker3">' +
								'<img src="/www.fightcervicalcancer.org.uk/images/dvd-thumbs/marker-3.jpg" alt="DVD Marker 3"/>' +
								'<p>How does HPV cause cervical cancer?</p>' +
							'</div>' +
							'<div id="marker4">' +
								'<img src="/www.fightcervicalcancer.org.uk/images/dvd-thumbs/marker-4.jpg" alt="DVD Marker 4"/>' +
								'<p>If I&rsquo;m not having sex why should I have the vaccine now?</p>' +
							'</div>' +
							'<div id="marker5">' +
								'<img src="/www.fightcervicalcancer.org.uk/images/dvd-thumbs/marker-5.jpg" alt="DVD Marker 5"/>' +
								'<p>How and where do I get the vaccine?</p>' +
							'</div>' +
							'<div id="marker6">' +
								'<img src="/www.fightcervicalcancer.org.uk/images/dvd-thumbs/marker-6.jpg" alt="DVD Marker 6"/>' +
								'<p>How safe is the vaccine?</p>' +
							'</div>' +
							'<div id="marker7">' +
								'<img src="/www.fightcervicalcancer.org.uk/images/dvd-thumbs/marker-7.jpg" alt="DVD Marker 7"/>' +
								'<p>Are there any side effects?</p>' +
							'</div>' +
							'<div id="marker8">' +
								'<img src="/www.fightcervicalcancer.org.uk/images/dvd-thumbs/marker-8.jpg" alt="DVD Marker 8"/>' +
								'<p>Do you still need to go for cervical screening if you have the vaccine?</p>' +
							'</div>' +
							'<div id="marker9">' +
								'<img src="/www.fightcervicalcancer.org.uk/images/dvd-thumbs/marker-9.jpg" alt="DVD Marker 9"/>' +
								'<p>Will boys get the vaccine as well?</p>' +
							'</div>' +
							'<div id="marker10" class="last">' +
								'<img src="/www.fightcervicalcancer.org.uk/images/dvd-thumbs/marker-10.jpg" alt="DVD Marker 10"/>' +
								'<p>Where can I get more information?</p>' +
							'</div>' +
						'</div>' +
					'</div>' +
					'<p class="next nav ir">Down<span></span></p>';

function dvd() {			
	player = document.getElementById("movie");	

	$("#stories").remove();
	$("#downloads").remove();
	
	$("#tertiary_content")
		.prepend(markerNavHTML)
		.attr("class", "scrollable");
		
	$("#transcripts")
		.accordion({			
			header: 'h3',	
			autoHeight: false
		});	
						
    $("div#markers").scrollable({ 
        vertical:true,  
        size: 3 
    });          	
    
    $("div#markers div.items div").click(function() {
    	index = parseFloat($(this).attr("id").substring(6)) - 1;    	
    	
    	player.seekPlayer(timings[index]);
    	
    	$("#transcripts").accordion('activate', index + 1);
    });
};

swfobject.embedSWF("/www.fightcervicalcancer.org.uk/flash/hpv-flash-movie-player.swf", "movie", "432", "366", "9.0.0", "/www.fightcervicalcancer.org.uk/flash/expressInstall.swf",{src:"/www.fightcervicalcancer.org.uk/flash/fight-it-dvd.flv", movie_title:"HPV DVD"}, {allowscriptaccess:"always"}, {id:"movie", name:"movie"});

addLoadEvent(dvd);
