// Init image play button on the big video image.
var image_init_do_colorbox = function() {
  var $this = $(this);
  var $c = $('div.cbox_c:eq(0)', $this.parent());
  if ($c.length) {
    $.colorbox({
      inline: true,
      width: 700,
      close: '关闭',
      href: '#' + $c.attr('id'),
      }, function(){
      $('#colorbox').fadeTo(0, 1);
      });
  }
};
var image_layer_init= function() {
  $('div.v_wrapper.colorbox, div.v_box.colorbox').each(image_init_do_colorbox);
};
var image_vote_init = function(){
  $('.box.colorbox').each(image_init_do_colorbox);
};

