jQuery.noConflict();
jQuery(function(){
  jQuery("div.diaryDetailBox div.body ul.photo").each(function(){
    jQuery(this).find("li").each(function(){
      jQuery(this).parent().parent("div.body").find("span."+(jQuery(this).attr("class"))).append(jQuery(this).children());
    });
  });
  jQuery("#cboxClose").live("click",function(){
    op_insert_str_to_selection(document.getElementById('diary_body'),jQuery('#colorbox_text').val());
  });
  jQuery("#diary_comment_photo_1_photo,#diary_comment_photo_2_photo,#diary_comment_photo_3_photo").attr("size",30);
});

var colorbox_input_youtube = function(){
  jQuery.colorbox({
    html:'<p>YoutubeのURLを貼り付けてください。</p><input type="text" size="50" id="colorbox_text">',
    close:'OK'
  });
};
var colorbox_input_nico = function(){
  jQuery.colorbox({
    html:'<p>ニコニコ動画のURLを貼り付けてください。</p><input type="text" size="50" id="colorbox_text">',
    close:'OK'
  });
};



