$(function(){
    $('.vlnk').click(function(){
        var html = '<center><iframe width="640" height="360" src="http://www.youtube.com/embed/' + $(this).attr('data') + '" frameborder="0" allowfullscreen></iframe></center>';

        $('.block').empty();
        $('.block').append(html);
        return false;
    });
});

