$(function() {
	$('.videoSpan').hide();
	$('.video').click(function() {
		var id = $(this).attr('id');
		$('.videoSpan').hide();
		$('.videoSpan.' + id).show();
	});
});