$( document ).ready( function() {

	$( ".show-video" ).click( function() {
		$( this ).parent().find( ".video-container" ).slideToggle();
	} );

} );

