﻿$(document).ready(function()
        {
         var videodiv1 = $("#video1").html();
         var videodiv2 = $("#video2").html();
         var videodiv3 = $("#video3").html();
         var videodiv4 = $("#video4").html();
         var videodiv5 = $("#video5").html();
        
          $("#video1_button").click(function(){
                $("#video1").html(videodiv1);
              $("#videos div").hide();
              $("#video1").show();
              
          });
          $("#video2_button").click(function(){
              $("#video2").html(videodiv2);
              $("#videos div").hide();
              $("#video2").show();
              
          });
          $("#video3_button").click(function(){
            $("#video3").html(videodiv3);
              $("#videos div").hide();
              $("#video3").show();
              
          });
          $("#video4_button").click(function(){
            $("#video4").html(videodiv4);
              $("#videos div").hide();
              $("#video4").show();
              
          });
          $("#video5_button").click(function(){
            $("#video5").html(videodiv5);
              $("#videos div").hide();
              $("#video5").show();
              
          });
        });
