/* Author: Jake Stutzman

$("vidbutton").click(function ($vid) {
  $('div#video').replaceWith( "<div id='video'>" + $vid + "</div>" );
});

*/
$('#video .video:first').show();

$('.video-link').click(function(e){
  var index = $('.video-link').index(this);

  if($('#video .video').eq(index).not(':visible')){
    $('#video .video').hide().eq(index).show();
  };

  return false;
});


