$(document).ready(function(){
    
	var colorBoxOpts = {iframe:true, innerWidth:725, innerHeight:625};

	$(".tutors_video").colorbox(colorBoxOpts);
    $(".families_video").colorbox(colorBoxOpts);
    $(".benefits_video").colorbox(colorBoxOpts);
    
    $(".tutors_video, .families_video, .donors_video, .benefits_video").hover(
      function () {
        $(this).find('.play_hover').css('display','block' );
        $(this).find('.video_hover').css('display','block' );
      }, 
      function () {}
    );
    
    $(".video_hover").hover(
      function () {}, 
      function () {
      	$(this).hide().prev('.play_hover').hide();
      }
    );

});
    



