やろうとしていることに応じて、JS を使用して、画像がクリックされるまでビデオを非表示にすることができます。
<a href="#" id="video" class="show_hide">
<img src="images/hand.gif" width="500" height="281" />
</a>
<div class="slidingDiv">
<iframe src="http://player.vimeo.com/video/66167649" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
</div>
必ずjQueryを参照してください
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js" type="text/javascript"></script>
JS
<script type="text/javascript">
$(document).ready(function(){
$(".slidingDiv").hide();
$(".show_hide").show();
$('.show_hide').click(function(){
$(".slidingDiv").slideToggle();
$("#video").hide();
});
});
</script>