$(document).ready(function(){
	
	// video gallery
	$(".overlay-trigger").click(function(){
		var triggerAnchor = $(this);
		var videoDiv = $(triggerAnchor.attr('href'));
		videoDiv.show();
		return false;
	});
	$(".video-player .close").click(function(){
			var closePara = $(this);
			var videoDiv = $(this).parent().parent();
			videoDiv.hide();
	});
	
	// video archive
	$("#video-archive-listing #videos li a").click(function(){
		var videoLink = $(this);
		var videoId = videoLink.attr('href');
		$("#video-archive-player > div").hide();
		$("#video-archive-player " + videoId).show();
	});
	
});