﻿function showVideo(videoNumber) {
	$(".large-video-holder div.video").hide();
	$("#video" + videoNumber).show();
}

$(document).ready(function () {
	$(".video-thumbnail-holder img.thumb-overlay")
        .mouseover(function () {
        	$(this).attr("src", "/common/images/video-thumb-hover.png");
        })
        .mouseout(function () {
        	$(this).attr("src", "/common/images/video-thumb-green-bar.png");
        });
	$(".thumb").mouseover(function () {
		$(this).children(".thumb-popup").show();
	});
	$(".thumb").mouseleave(function () {
		$(this).children(".thumb-popup").hide();
	});
	showVideo(0);
});

