$(document).ready(function() {
   // put all your jQuery goodness in here.
   

	$('#launch_video_1').click(function (e) {
		e.preventDefault();
		$('#video_1').modal();
	});

	$('#launch_video_2').click(function (e) {
		e.preventDefault();
		$('#video_2').modal();
	});


});
