$(function() {
    var movie1 = $('.movie1').html();
    var movie2 = $('.movie2').html();
    
    $('.movie1').html('');
    $('.movie2').html('');


    $('.showmovie1').click(function() {
        
        if ($('.showmovie1').val() == 'Watch the Training Video 20 min') {
            $('#movie').html(movie1);
            $('.showmovie1').val('Close Training Video');
            $('.showmovie2').val('Watch the Overview Video 6 min');
        } else {
            $('#movie').html('');
            $('.showmovie1').val('Watch the Training Video 20 min');
        }
    });
	
    $('.showmovie2').click(function() {

        if ($('.showmovie2').val() == 'Watch the Overview Video 6 min') {
            $('#movie').html(movie2);
            $('.showmovie2').val('Close Overview Video');
            $('.showmovie1').val('Watch the Training Video 20 min');
        } else {
            $('#movie').html('');
            $('.showmovie2').val('Watch the Overview Video 6 min');
        }
    });
});

