 
     
    // When the DOM is ready, initialize the scripts.
    jQuery(function( $ ){
     
    // Get a reference to the container.
    var container = $( "#test_video" );
     
     
    // Bind the link to toggle the slide.
    $( "a#golden" ).click(
    function( event ){
    // Prevent the default event.
    event.preventDefault();
     
    // Toggle the slide based on its current
    // visibility.
    if (container.is( ":visible" )){
     
    // Hide - slide up.
    container.slideUp( 500 );
     
    } else {
     
    // Show - slide down.
    container.slideDown( 500 );
     
    }
    }
    );
     
    });
     
 
