$(document).ready(function() {
  $('.video').hide();
  
	// fade in and out
	$('#fadeInOut').toggle(function() {
	$('#fadeInOut').toggle();
	$(this).siblings('.video').fadeIn('slow');
	}, function() {
	$(this).siblings('.video').fadeOut('slow');
	});	
	
	
	});	