
var videos_flv = Array(
"http://www.livestrong.com/video/5186-lance-coming-back-give/",
"http://www.livestrong.com/video/5162-what-means-give-100/",
"http://www.livestrong.com/video/5062-nike-give-percent-sneak-peek/",
"http://cdn-www.livestrong.com/videos/nike/cnmg_nike_organization_SCFINAL.flv"
);

var videos_titles = Array(
"Lance's Comeback Inspires Others to Live Strong",
"Giving 100% is a Commitment ",
"LIVE<strong>STRONG</strong> Collection Favorites",
"NIKE Gives 100% to Fight Cancer"

);

var videos_thumbs = Array(
"/ui/images/give100/video_2.jpg",
"/ui/images/give100/video_3.jpg",
"/ui/images/give100/video_4.jpg",
"/ui/images/give100/video_1.jpg"
);

var current_video_index = 3;

$(document).ready(function() {
	var video_list = $(".video_thumb img");
	var paragraph_list = $(".video_thumb p");
	for(var i=0; i<3; i++) {
		video_list[i].parentNode.index = i;
		paragraph_list[i].parentNode.index = i;
		video_list[i].onclick = switch_video;
		paragraph_list[i].onclick = switch_video;
	}
});

function switch_video()
{
	window.location = videos_flv[this.parentNode.index];
}